使用 Chrome Identity API 获取 id_token

2024-01-11

我正在开发一个 Google Chrome 扩展程序,以允许用户使用他们的 Google 帐户进行身份验证,我决定使用Chrome Identity API.

要对我的应用程序中的用户进行身份验证,我需要获取 ID_Token (签名令牌)

有没有办法通过 Google Chrome Identity API 获取 OpenID Connect 令牌?

感谢您的帮助 !


这是我在另一个帖子的回答的粘贴https://stackoverflow.com/a/32548057/3065313 https://stackoverflow.com/a/32548057/3065313

我昨天遇到了同样的问题,既然我找到了解决方案,我不妨分享它,因为它并不那么明显。据我所知,谷歌没有提供直接且有记录的方法来执行此操作,但您可以使用chrome.identity.launchWebAuthFlow()功能。

首先你应该创建一个Web应用程序在 google console 中添加凭据并将以下网址添加为有效的Authorized redirect URI: https://<EXTENSION_OR_APP_ID>.chromiumapp.org。该 URI 不必存在,chrome 只会捕获到该 URL 的重定向并稍后调用您的回调函数。

清单.json:

{
  "manifest_version": 2,
  "name": "name",
  "description": "description",
  "version": "0.0.0.1",
  "background": {
    "scripts": ["background.js"]
  },
  "permissions": [
    "identity"
  ],
  "oauth2": {
    "client_id": "<CLIENT_ID>.apps.googleusercontent.com",
    "scopes": [
      "openid", "email", "profile"
    ]
  }
}

背景.js:

// Using chrome.identity
var manifest = chrome.runtime.getManifest();

var clientId = encodeURIComponent(manifest.oauth2.client_id);
var scopes = encodeURIComponent(manifest.oauth2.scopes.join(' '));
var redirectUri = encodeURIComponent('https://' + chrome.runtime.id + '.chromiumapp.org');

var url = 'https://accounts.google.com/o/oauth2/auth' + 
          '?client_id=' + clientId + 
          '&response_type=id_token' + 
          '&access_type=offline' + 
          '&redirect_uri=' + redirectUri + 
          '&scope=' + scopes;

chrome.identity.launchWebAuthFlow(
    {
        'url': url, 
        'interactive':true
    }, 
    function(redirectedTo) {
        if (chrome.runtime.lastError) {
            // Example: Authorization page could not be loaded.
            console.log(chrome.runtime.lastError.message);
        }
        else {
            var response = redirectedTo.split('#', 2)[1];

            // Example: id_token=<YOUR_BELOVED_ID_TOKEN>&authuser=0&hd=<SOME.DOMAIN.PL>&session_state=<SESSION_SATE>&prompt=<PROMPT>
            console.log(response);
        }
    }
);

Google OAuth2 API(用于 OpenID Connect)文档可在此处找到:https://developers.google.com/identity/protocols/OpenIDConnect#authenticationuriparameters https://developers.google.com/identity/protocols/OpenIDConnect#authenticationuriparameters

PS:如果您的清单中不需要 oauth2 部分。您可以安全地省略它,并仅在代码中提供标识符和范围。

编辑: 对于那些感兴趣的人,您不需要身份 API。您甚至可以使用 tabs API 的一些小技巧来访问令牌。代码有点长,但你有更好的错误消息和控制。请记住,在以下示例中,您需要创建Chrome 应用程序证书。

清单.json:

{
  "manifest_version": 2,
  "name": "name",
  "description": "description",
  "version": "0.0.0.1",
  "background": {
    "scripts": ["background.js"]
  },
  "permissions": [
    "tabs"
  ],
  "oauth2": {
    "client_id": "<CLIENT_ID>.apps.googleusercontent.com",
    "scopes": [
      "openid", "email", "profile"
    ]
  }
}

背景.js:

// Using chrome.tabs
var manifest = chrome.runtime.getManifest();

var clientId = encodeURIComponent(manifest.oauth2.client_id);
var scopes = encodeURIComponent(manifest.oauth2.scopes.join(' '));
var redirectUri = encodeURIComponent('urn:ietf:wg:oauth:2.0:oob:auto');

var url = 'https://accounts.google.com/o/oauth2/auth' + 
          '?client_id=' + clientId + 
          '&response_type=id_token' + 
          '&access_type=offline' + 
          '&redirect_uri=' + redirectUri + 
          '&scope=' + scopes;

var RESULT_PREFIX = ['Success', 'Denied', 'Error'];
chrome.tabs.create({'url': 'about:blank'}, function(authenticationTab) {
    chrome.tabs.onUpdated.addListener(function googleAuthorizationHook(tabId, changeInfo, tab) {
        if (tabId === authenticationTab.id) {
            var titleParts = tab.title.split(' ', 2);

            var result = titleParts[0];
            if (titleParts.length == 2 && RESULT_PREFIX.indexOf(result) >= 0) {
                chrome.tabs.onUpdated.removeListener(googleAuthorizationHook);
                chrome.tabs.remove(tabId);

                var response = titleParts[1];
                switch (result) {
                    case 'Success':
                        // Example: id_token=<YOUR_BELOVED_ID_TOKEN>&authuser=0&hd=<SOME.DOMAIN.PL>&session_state=<SESSION_SATE>&prompt=<PROMPT>
                        console.log(response);
                    break;
                    case 'Denied':
                        // Example: error_subtype=access_denied&error=immediate_failed
                        console.log(response);
                    break;
                    case 'Error':
                        // Example: 400 (OAuth2 Error)!!1
                        console.log(response);
                    break;
                }
            }
        }
    });

    chrome.tabs.update(authenticationTab.id, {'url': url});
});
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系:hwhale#tublm.com(使用前将#替换为@)

使用 Chrome Identity API 获取 id_token 的相关文章

随机推荐