可以在没有 302 响应的情况下请求 gsessionid
我正在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
唯一应返回 gsessionid 的 Google 数据 API 是日历数据 API。据我所知,其他人都没有这样做。
话虽这么说,一般来说这里有一些选项:
Location:
标头中的 gsessionid 查询参数。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:
Location:
header.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.