Java AppEngine:在 HTTPS 中获取 2 个 url
我正在尝试从 google appengine (java) 获取某些 https 网站的数据。 有两个步骤:登录然后从另一个页面获取数据。
在开发服务器中,我使用非常基本的 java 代码(URL 和 HttpConnection、POST 数据)成功完成了这两个步骤。
当部署在appengine上时,步骤1可以,但步骤2失败。
我应该补充一点,我正在使用两个不同的 http 连接对象,但由于它在开发服务器中工作,我告诉自己有一些 cookie/会话内容来保持两个调用之间的连接。
但它在 appengine 上下文中失败,所以我想知道它是否不能与我的浏览器和 https 证书相关?
I'm trying to fetch data of some https website from google appengine (java).
There are two step: log-in then fetch data from another page.
In the dev server, I complete this two steps successfully, with very basic java code (URL and HttpConnection, POST data).
When deployed on appengine, step 1 is ok, but step 2 fails.
I should add that I'm using two different http connections objects, but as it is working in dev server, I told myself that there was some cookie/session stuffs to keep the connection between the two calls.
But it fails in appengine context, so I'm wondering if it can't be related to my browser and https certificates?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我为 AppEngine 上托管的 Facebook 构建了一个应用程序。
为了发出 https 请求,我正在使用 URLFetchService:
希望有帮助。
I built an application to the Facebook hosted on AppEngine.
And to make https requests i'm using the URLFetchService:
Hope that helps.