gpt4 book ai didi

Android HttpPost 请求不发布

转载 作者:行者123 更新时间:2023-11-30 02:35:45 26 4
gpt4 key购买 nike

我正在尝试从 Android 应用程序中向我的 Google App Engine 应用程序发送 POST 请求,以便将文件上传到 blobstore 并将一些元数据上传到数据存储区。我构建了一个可以从浏览器访问的常规网络表单,并且从那里发帖工作得很好。但是,我无法通过我的 Android 应用执行相同的操作。

许多其他 StackOverflow 帖子都提到使用 MultipartEntityMultipartEntityBuilder 来构建发布请求。前者似乎已被弃用,但有更多的例子,所以我尝试了两种方式(当然是分开的):

HttpClient httpClient = new DefaultHttpClient();
HttpPost postRequest = new HttpPost(upload_url);
MultipartEntityBuilder builder = MultipartEntityBuilder.create();
builder.setMode(HttpMultipartMode.BROWSER_COMPATIBLE);
builder.addTextBody("poem_name", "Testing poem_name from Android", ContentType.MULTIPART_FORM_DATA);
builder.addTextBody("poem_text", "blah", ContentType.MULTIPART_FORM_DATA);
postRequest.setEntity(builder.build());
HttpResponse response = httpClient.execute(postRequest);
HttpEntity theEntity = response.getEntity();
theEntity.consumeContent();
httpClient.getConnectionManager().shutdown();

HttpClient httpClient = new DefaultHttpClient();    
HttpPost postRequest = new HttpPost(upload_url);
StringBody poem_name = new StringBody("Testing poem_name from Android");
StringBody poem_text = new StringBody("blah");
MultipartEntity entity = new MultipartEntity(HttpMultipartMode.BROWSER_COMPATIBLE);
entity.addPart("poem_name", poem_name);
entity.addPart("poem_text", poem_text);
postRequest.setEntity(entity);
HttpResponse response = httpClient.execute(postRequest);

在我的模板中,原始的 webform 就像普通浏览器的 charm 一样工作(我最初在 Android 代码中省略了文件上传,因为它太麻烦了,无法立即调试):

<form action="{{ upload_url }}" method="POST" enctype="multipart/form-data">
Poem Title: <input name="poem_name" required><br>
Poem Text:<br><textarea name="poem_text" rows="5" cols="40"></textarea><br>
Upload File: <input type="file" name="file"><br>
<input type="submit" name="submit" value="Add Poem">
</form>

但是,当我在我的 Android 应用程序上执行前两部分代码中的任何一个时,我的服务器上没有显示任何内容。传递给 HttpPost 构造函数的 upload_url 与 Web 表单 {{ upload_url }} 的操作字段中使用的完全相同(它由 Google App Engine 动态生成)。所以,我想我会尝试发布到任何 Web 表单,而不是需要多部分实体和动态 URL 的表单。我在应用程序的不同页面上构建了一个新的准系统 Web 表单,就像这样......

<form action="/testForm" method="post">
<input name="nickname"><br>
<input type="submit" value="Create Test Entity">
</form>

...并尝试了一个基本的 post 请求,如许多初学者示例所示:

HttpClient httpClient = new DefaultHttpClient();    
HttpPost postRequest = new HttpPost("http://my-app-title.appspot.com/testForm");
List<NameValuePair> nameValuePairs = new ArrayList<NameValuePair>(1);
nameValuePairs.add(new BasicNameValuePair("nickname", "test with NameValuePair"));
postRequest.setEntity(new UrlEncodedFormEntity(nameValuePairs));
HttpResponse response = httpClient.execute(postRequest);

果然,该表单在浏览器中运行良好,但从我的 Android 应用程序执行此代码时没有产生任何结果(甚至没有空值代替“昵称”字段,这告诉我问题出在发布请求中由于某种原因没有被执行)。从我读过的所有内容来看,这应该有效。有什么我忘记的东西不允许我完成发布请求吗?如果有任何帮助,我将不胜感激。

最佳答案

根据 njzk2 的建议,我使用 InputStream 来查看 HttpResponse 的内容。作为引用,这是我使用的代码:

InputStream iStream = response.getEntity().getContent();
BufferedReader reader = new BufferedReader(new InputStreamReader(iStream));
while ((tempString = reader.readLine()) != null) {
postResponseOutput += tempString;
}
Log.d("HttpResponse Output", postResponseOutput);

对于准系统表单,我错误地要求在/testForm 的 url 上登录,因此返回了 Google 的登录页面而不是我的表单。删除该限制使表单完美运行。

尝试使用我代码的 MultipartEntityBuilder 部分在帖子响应中返回了一些有趣的内容,只不过是“此 URL 不接受请求的内容类型”。但是尝试使用 MultipartEntity 部分似乎可以解决问题。 httpresponse 返回内部服务器错误(与用户身份验证有关)。这就解释了为什么发布到原始网络表单不起作用——服务器错误首先阻止了表单被访问。我相信,一旦我解决了错误,该表单就会像我的测试表单一样正常工作。

关于Android HttpPost 请求不发布,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26596994/

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