作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
这个问题在这里已经有了答案:
“Error 403: access_denied” from Google authentication web api despite google account being owner
(2 个回答)
8 个月前关闭。
请注意:这不是重复的,因为我遵循了 SO仅通过创建新项目来验证答案,但它不起作用。另外我的情况是来自开发控制台的 chrome 扩展或 chrome 应用程序客户端 ID。
错误:
Error 403: access_deniedThe 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
{
"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"]
}]
}
背景.js:
chrome.identity.getAuthToken({ 'interactive': true }, function(token) {
if (token){alert('token is ' + token)}
else{alert('token not present')}
});
P.S:我在测试阶段不想走验证路线。此外,我希望所有者不需要验证。
最佳答案
关于google-chrome-extension - 错误 403 : access_denied The developer hasn’t given you access to this app despite a new project being created,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65756266/
我是一名优秀的程序员,十分优秀!