谷歌小工具中的用户身份验证

发布于 2024-11-03 22:31:17 字数 202 浏览 0 评论 0原文

我正在创建一个谷歌小工具(用于 igoogle 或 gmail),它将向我的服务器发出请求。 我想知道是否有任何方法可以对用户进行身份验证,而无需让他们在我的服务器上使用用户名/密码进行身份验证。有没有办法使用谷歌身份来识别用户(谷歌是否以某种方式给我谷歌用户ID?)。 如果我要在 Google 小工具中使用 Oauth 选项,我是否能够获取 access_token 并将其用作标识符。

I'm creating a google gadget (for igoogle or gmail) which will make requests to my server.
I wanted to know if there was any way for me to authenticate users without having them authenticate with username/password on my server. is there a way to use the google identity to identify the users (does google give me the google userID in some way?).
If i were to use the Oauth option in google gadgets would i be able to get the access_token and use that as an identifier.

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

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

发布评论

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

评论(1

疾风者 2024-11-10 22:31:17

您可以使用以下参数,它会让谷歌向您发送带有开放社交ID的签名请求:

params[gadgets.io.RequestParameters.CONTENT_TYPE] = gadgets.io.ContentType.JSON;
params[gadgets.io.RequestParameters.AUTHORIZATION] = gadgets.io.AuthorizationType.SIGNED;
params["OAUTH_SERVICE_NAME"] = "HMAC";
params[gadgets.io.RequestParameters.METHOD] = gadgets.io.MethodType.GET;

You can use the following parameters, it will make google send you a signed request with the open social id :

params[gadgets.io.RequestParameters.CONTENT_TYPE] = gadgets.io.ContentType.JSON;
params[gadgets.io.RequestParameters.AUTHORIZATION] = gadgets.io.AuthorizationType.SIGNED;
params["OAUTH_SERVICE_NAME"] = "HMAC";
params[gadgets.io.RequestParameters.METHOD] = gadgets.io.MethodType.GET;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文