gpt4 book ai didi

Android httpget 适用于浏览器但不适用于应用程序

转载 作者:行者123 更新时间:2023-11-29 01:42:53 24 4
gpt4 key购买 nike

我想从我的 Android 应用程序中执行 httpGet,但我没有得到任何响应,当我从浏览器中执行相同的 httpGet 时它起作用了。我还使用 chrome 扩展 Postman 来测试我发送的 URL 并且它有效

@Override
public void onLocationChanged(Location location) {
// Draw the marker, if destination location is not set
latitude = location.getLatitude();
longitude = location.getLongitude();
if (mMarkerPoints.size() < 2) {

mLatitude = location.getLatitude();
mLongitude = location.getLongitude();
LatLng point = new LatLng(mLatitude, mLongitude);

mGoogleMap.moveCamera(CameraUpdateFactory.newLatLng(point));
mGoogleMap.animateCamera(CameraUpdateFactory.zoomTo(18));

drawMarker(point);
}
String Text = "My current Latitude = " + latitude + " Longitude = "
+ longitude;
Thread trd = new Thread(new Runnable() {
@Override
public void run() {
try {

SendQueryString();
} catch (Throwable e) {
e.printStackTrace();
Log.i(".............", "Error");
}
}
});
trd.start();

}

public void SendQueryString() {

String url = //
"http://sistemamedicointegrado.azurewebsites.net/Home/Ubicacion?latitud="
+ latitude + "&longitud=" + longitude + "&id=1".toString().trim();
try {
HttpClient Client = new DefaultHttpClient();
HttpGet httpget = new HttpGet(url);
Client.execute(httpget);
Log.i(".............", "I am here");

} catch (Exception ex) {

}
}

最佳答案

错误 发生在服务器端,来自 Controller 的操作方法不允许 anonimus Get。

关于Android httpget 适用于浏览器但不适用于应用程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23356587/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com