错误 403:access_denied 尽管创建了一个新项目,开发者仍未授予您访问此应用的权限

Error 403: access_denied The developer hasn’t given you access to this app despite a new project being created

请注意:这 不是 重复项,因为我遵循 仅通过创建新项目验证的答案,但它没有用。另外,我的情况是 chrome 扩展名或来自开发控制台的 chrome 应用程序客户端 ID。

错误:

Error 403: access_denied The developer hasn’t given you access to this app. It’s currently being tested and it hasn’t been verified by Google. If you think you should have access, contact the developer

尽管如此,就像其他人一样 post 我正在从所有者帐户访问它。同时,那个post的回答我也不能评论,因为我的名气不够高。 尽管如此,

我正在尝试通过以下方式从用户处检索访问令牌:

manifest.json:

{
    "manifest_version": 2,
    "name": "To be named",
    "description": "This extension helps...",
    "version": "0.1.0",
    "browser_action":{
        "default_popup":"popup.html"
    },
    "permissions": [
        "storage",
        "identity",
        "identity.email",
        "http://127.0.0.1:5000/Time"
    ],

    "oauth2":{
        "client_id":"10977...esr6.apps.googleusercontent.com",
        "scopes":["https://www.googleapis.com/auth/userinfo.profile"]
    },
    "background": {
        "scripts": ["background.js"],
        "persistent": false
    },  
    "content_scripts": [{
        "matches": ["https://www.blank.org/"], 
        "js": ["content.js"],
        "css": ["styles.css"]
    }]
}

background.js:

chrome.identity.getAuthToken({ 'interactive': true }, function(token) {
  if (token){alert('token is ' + token)}
  else{alert('token not present')}
});

P.S: 我不想通过验证路线,因为我处于测试阶段。另外我希望所有者不需要验证。

解决方案:

  1. 转到您的developer console
  2. 转到 OAuth 同意屏幕。
  3. 转到+添加用户,在测试用户下。
  4. 添加测试用户(甚至 所有者的电子邮件地址,如果没有它就无法工作)