这很奇怪。
我正在使用我的Android设备向局域网中的节点js服务器发送消息。
现在出现了问题:当我发送POST HTTP时它会工作。但是当我发送GET HTTP时,它不起作用,服务器甚至没有收到get请求。
这是我收到get:
的代码app.get('/auth/facebook', passport.authenticate('facebook'));
这是发送GET的androif中的代码:
public class Background_confirmation extends AsyncTask<Void, Integer, String> {
@Override
protected void onPreExecute() {
super.onPreExecute();
// progressDialog = ProgressDialog.show(Confirmation.this, "Please wait...", "Retrieving data ...", true);
}
@Override
protected String doInBackground(Void... params) {
HttpClient client = new DefaultHttpClient();
HttpGet request = new HttpGet("http://localhost:8080/auth/facebook");
// replace with your url
HttpResponse response = null;
try {
response = client.execute(request);
Log.d("Response of GET request", response.toString());
} catch (ClientProtocolException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
return response.toString();
}
@Override
protected void onPostExecute(String result) {
super.onPostExecute(result);
// progressDialog.setCancelable(true);
// }
}
有人知道为什么会这样吗?
答案 0 :(得分:2)
您正试图从localhost
(即您的Android设备)而不是从您的服务器获取数据。