我正在我的一个客户 android 应用程序中集成 exotel 呼叫服务。Api 在邮递员中工作正常并接收 xml 响应,但在 android 应用程序中不起作用并给出 volley 401 身份验证错误。
val stringRequest = object : StringRequest(Request.Method.POST,
URL,
Response.Listener { response ->
Toast.makeText(context, "response " + response.toString(), Toast.LENGTH_SHORT).show()
Log.d("Callresponse", response.toString())
}, Response.ErrorListener { error ->
Log.d("Callresponseerror", error.message.toString())
Toast.makeText(context, "error " + error.message, Toast.LENGTH_SHORT).show()
}) {
override fun getParams(): MutableMap<String, String> {
val params = HashMap<String, String>()
params["From"] = AppSetting.getSitterMobile(context, AppConstants.PREF_MOBILE, null)
params["To"] = contact
params["CallerId"] = "*****"
params["CallType"] = "****"
return params
}
}
stringRequest.retryPolicy = DefaultRetryPolicy(10,
10,
DefaultRetryPolicy.DEFAULT_BACKOFF_MULT)
requestQueue.add(stringRequest)