为什么在浏览器中有效的 Web 请求会从 Android 返回 404 错误?
我正在编写一个应用程序来查询 Google 购物 api。使用下面的请求和有效的 api 密钥会返回我在浏览器中预期的结果,但不会从 Android 设备返回结果。为什么在通过 HttpClient 发送请求时会收到 404 未找到错误,但浏览器中的相同 url 却可以正常工作?
API 调用:
谢谢
I am writing an app to query the Google shopping api. Using the request below with a valid api key returns me the results I'm expecting in a browser but not from an Android device. Why would I get a 404 not found error when sending the request through the HttpClient but the same url in a browser works?
API Call:
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
正如我的评论中所描述的。
该 API 的文档位于 code.google.com/apis/shopping/search/v1/getting_started.html。我通过将请求类型切换为 HttpGet 而不是 HttpPost 来使其工作。仍然不确定为什么这会导致 404 错误再次出现。
As described in my comment.
The documentation for the api is at code.google.com/apis/shopping/search/v1/getting_started.html. I got it to work by switching the request type to a HttpGet instead of HttpPost. Still not sure why this would make a 404 error come back.