Java AppEngine:在 HTTPS 中获取 2 个 url

发布于 2024-10-18 22:26:01 字数 334 浏览 0 评论 0原文

我正在尝试从 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

々眼睛长脚气 2024-10-25 22:26:01

我为 AppEngine 上托管的 Facebook 构建了一个应用程序。

为了发出 https 请求,我正在使用 URLFetchService:

String request = "https://graph.facebook.com/194652357227159?access_token=Aj2h4df...";
URL url = new URL(request);
URLFetchService urlFetchService = URLFetchServiceFactory.getURLFetchService();
HTTPResponse resp =  urlFetchService.fetch(new HTTPRequest(url, HTTPMethod.GET, FetchOptions.Builder.doNotValidateCertificate()));

希望有帮助。

I built an application to the Facebook hosted on AppEngine.

And to make https requests i'm using the URLFetchService:

String request = "https://graph.facebook.com/194652357227159?access_token=Aj2h4df...";
URL url = new URL(request);
URLFetchService urlFetchService = URLFetchServiceFactory.getURLFetchService();
HTTPResponse resp =  urlFetchService.fetch(new HTTPRequest(url, HTTPMethod.GET, FetchOptions.Builder.doNotValidateCertificate()));

Hope that helps.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文