gpt4 book ai didi

android - Flask POST 400 访问请求 JSONObject 时出错

转载 作者:太空宇宙 更新时间:2023-11-03 13:24:16 34 4
gpt4 key购买 nike

我正在开发一个 android 应用程序,其中 android 移动客户端通过 Flask REST API 与服务器通信。特定移动设备间歇性地从服务器接收 400 响应,用于其中一个 POST 端点。

服务器端相关代码如下:

def post(self):
app.logger.info("Request :" + request.url)
if request.headers['Content-Type'] == "application/json":
tok = str(request.json['tok'])
user_id = str(request.json['user_id'])
contact = str(request.json['contact'])
.
.
.
else:
response = jsonify({"message": "Unsupported Media Type"})
response.status_code = 415
return response

在 if 条件下访问请求 json 对象后立即返回响应 400。

以下是用于对json对象进行编码并执行post请求的android java代码:

    HttpParams httpParameters = new BasicHttpParams();
HttpConnectionParams.setConnectionTimeout(httpParameters,Constants.HTTP_CONNECTION_TIMEOUT);
HttpConnectionParams.setSoTimeout(httpParameters, Constants.HTTP_SOCKET_TIMEOUT);
HttpClient client = new DefaultHttpClient(httpParameters);
URL url = null;
URI uri = null;
try {
url = new URL(Constants.URL+"api/v1/testapi");
uri = new URI(url.getProtocol(), url.getUserInfo(), url.getHost(), url.getPort(), url.getPath(), url.getQuery(), url.getRef());
} catch (MalformedURLException e3) {
e3.printStackTrace();
} catch (URISyntaxException e) {
e.printStackTrace();
}
HttpPost post = new HttpPost(uri.toString());
final JSONObject msgObject = jObject[0];

StringEntity se = null;
try {
se = new StringEntity(msgObject.toString());
} catch (UnsupportedEncodingException e1) {
// TODO Auto-generated catch block
e1.printStackTrace();
}
se.setContentType(new BasicHeader(HTTP.CONTENT_TYPE,"application/json"));
post.setEntity(se);
boolean postFailed = false;
try {
HttpResponse response = client.execute(post);
Log.v(TAG,response.getStatusLine().toString());
if(response.getStatusLine().toString().indexOf("200")!=-1){
HttpEntity httpEntity = response.getEntity();
InputStream is = httpEntity.getContent();
JSONParser parseJSON = new JSONParser();
JSONObject JO = parseJSON.getJSONObj(is);
.
.
.

}
is.close();

}else
postFailed = true;

} catch (ClientProtocolException e) {
// TODO Auto-generated catch block
e.printStackTrace();
postFailed = true;
} catch (UnsupportedEncodingException e) {
// TODO Auto-generated catch block
e.printStackTrace();
postFailed = true;
} catch (IllegalStateException e) {
// TODO Auto-generated catch block
e.printStackTrace();
postFailed = true;
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
postFailed = true;
} catch (JSONException e) {
// TODO Auto-generated catch block
e.printStackTrace();
postFailed = true;
}

msgObject 是 JSONObject 类型,包含所有预期的键值对。

这个问题的奇怪之处在于,它主要发生在特定的移动客户端(间歇性)。如果你们对如何解决这个问题有任何建议,请告诉我。谢谢!

最佳答案

判断 Flask 中是否设置了正确的 JSON 内容类型的最佳方式是 is_json功能。即使您出于某种原因不想使用此方法,您也应该像下面这样制作 if 语句

if "application/json" in request.headers["Content-Type"]:

这里的问题是,大多数客户端不仅将 application/json 放在 Content-Type 中,还包括编码,因此 header 结果如下:

Content-Type: application/json; charset=utf-8

希望现在一切都清楚了:)

关于android - Flask POST 400 访问请求 JSONObject 时出错,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22679776/

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