可以在没有 302 响应的情况下请求 gsessionid

发布于 2024-08-16 00:32:38 字数 328 浏览 8 评论 0原文

我正在 Flash/AS2 中编写一个 google gdata API 客户端(遗憾的是,目前无法选择迁移到 AS3)。通过 ClientLogin 登录工作正常,但后续请求将返回 302 重定向,其中包括我应该在将来的请求中包含的 gsessionid,以避免 302。

Flash/AS2,据我所知,不允许我以任何方式实际查询 http 错误响应正文,因此在返回 302 后我无法实际看到此 gsessionid。如果我已经有一个有效的 GoogleLogin 身份验证令牌,是否有一个 gdata api 调用会在 HTTP 200 响应中返回一个有效的 gsessionid,或者如果没有中间人代理,这是不可能的?

I'm writing a google gdata API client in Flash/AS2 (sadly, moving to AS3 is not an option at this time). Logging in via ClientLogin works fine but subquent requests will return a 302 redirect that includes a gsessionid I am supposed to include with future requests to avoid the 302s.

Flash/AS2, AFAIK, does not allow me to actually query an http error response body in any way, so there's no way for me to actually see this gsessionid after the 302 is returned. Is there a gdata api call which will return me a valid gsessionid inside an HTTP 200 response if I already have a valid GoogleLogin auth token, or is this not possible without a man-in-the-middle proxy?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

永言不败 2024-08-23 00:32:38

唯一应返回 gsessionid 的 Google 数据 API 是日历数据 API。据我所知,其他人都没有这样做。

话虽这么说,一般来说这里有一些选项:

  1. 从重定向正文中抓取 gsessionid 查询参数,这听起来像是您尝试过的。 (一般来说,这是脆弱的,不是一个好主意。)
  2. 使用位于重定向的 Location: 标头中的 gsessionid 查询参数。
  3. 重定向还将包含一个 S= cookie。如果您可以确保为将来的请求设置此 cookie,Google 日历将使用它来代替 gsessionid 查询参数。

如果这些都不适合您,您唯一的选择就是编写代理。无法在重定向之外获取 gsessionid,并且如果没有它,日历数据 API 将无法处理请求。

The only Google Data API that should return a gsessionid is the Calendar Data API. None of the others do this, to my knowledge.

That being said, in general there's options here:

  1. Scrape the gsessionid query parameter from the redirect body, which it sounds like you tried. (In general, this is fragile and not a good idea.)
  2. Use the gsessionid query parameter located within the redirect's Location: header.
  3. The redirect will also contain an S= cookie. If you can make sure this cookie gets set for future requests, Google Calendar will use it in place of a gsessionid query parameter.

If neither of these will work for you, your only option is to write a proxy. There's no way to get the gsessionid outside of the redirect, and the Calendar Data API won't serve requests without it.

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