我不明白爲什麼我不能閱讀這個JSON鏈接,但瀏覽器Chrome可以閱讀,我嘗試了不同的鏈接,我讀了它們。爲什麼不能閱讀這個JSON,但瀏覽器可以
this is the link要求JSON響應:
我的代碼:
runOnUiThread(new Runnable() {
@Override
public void run() {
new sendToken().execute("http://admin:[email protected]/push-notifications-portlet/api/secure/jsonws/pushnotificationsdevice/add-push-notifications-device?token=cNAXYNQSPHk:APA91bF86THzkPE_ol9euea1M40x6jVgN9RjUOISVtL-UEXDYpAP62aeRnUwkLrSt6z8C4saTJPKW5CJ57VSRmovZ5OBX4NsZg3U-zoDdXB64dWzAQGB7WllGvqGEO3Nt4_Fbg-vUyok&platform=android");
}
});
和我的AsyncTask:
class sendToken extends AsyncTask<String, Integer, String> {
@Override
protected String doInBackground(String... params) {
return docNoiDung_Tu_URL(params[0]);
}
@Override
protected void onPostExecute(String s) {
Log.d("Respones: ", s + "");
}
}
,它不與任何迴應。
您正在執行的AsyncTask但如果是你的HTTP調用? –
請將'docNoiDung_Tu_URL()'函數中存在的代碼發佈出來,同時發佈您獲得的輸出/日誌作爲響應 –
您的網址首先在瀏覽器中打開時要求先登錄。這可能是它的原因。 –