最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - How to get the unique user ID in a chrome extension using OAuth? - Stack Overflow

programmeradmin2浏览0评论

I am using the identity permission in my manifest file and in my JavaScript code I use chrome.identity.getAuthToken({ 'interactive': true }, function( token ) to get the use identification token.

How do I get the unique user ID or e-mail address? Preferrably without adding new permissions.

I am using the identity permission in my manifest file and in my JavaScript code I use chrome.identity.getAuthToken({ 'interactive': true }, function( token ) to get the use identification token.

How do I get the unique user ID or e-mail address? Preferrably without adding new permissions.

Share asked Jun 9, 2016 at 9:04 Z0qZ0q 1,8934 gold badges32 silver badges67 bronze badges
Add a ment  | 

2 Answers 2

Reset to default 11 +50

You can use chrome.identity.getProfileUserInfo() to get both the email address and a unique id. You will need to add the identity.email permission (in addition to identity). It does not require an OAuth2 token (or even a network connection).

Here is a minimal extension that prints this information to the console of a background page:

manifest.json

{
  "manifest_version" : 2,

  "name" : "Identity Test",
  "version" : "0.1",

  "background": {
    "scripts": ["background.js"]
  },

  "permissions": [
    "identity",
    "identity.email"
  ]
}

background.js

chrome.identity.getProfileUserInfo(function(userInfo) {
  console.log(JSON.stringify(userInfo));
});

You could instead get user info by calling the Google API with the OAuth2 token. I believe you will need to set both the profile and email scopes. If you use the Google API Client library, you can call gapi.client.oauth2.userinfo.get(). This more strictly satisfies the letter of your question, which specifies using OAuth and prefers not adding permissions, but I would guess that chrome.identity.getProfileUserInfo() is what you're really looking for.

Without additional permissions, it will depend on the oauth2 scopes you declared in your manifest.json file.

For example, if you declared any Google Drive scope, you can use Google Drive's About GET method (see here) to retrieve the user's id and e-mail, among other data.

发布评论

评论列表(0)

  1. 暂无评论