【发布时间】:2017-10-01 18:58:30
【问题描述】:
我想在开始扩展后向 Google 授权。
我写 manifest.json 和 background.js 如下。
当前目录结构
manifest.json
{
"manifest_version": 2,
"name": "***************",
"short_name": "DSBOT",
"version": "0.0.1.0",
"description": "**************************",
"icons": {
"16": "images/icon_16.png",
"48": "images/icon_48.png",
"128": "images/icon_128.png"
},
"background": {
"scripts": [
"background.js"
]
},
"browser_action": {
"default_icon": {
"19": "images/icon_19.png"
},
"default_popup": "popup.html"
},
"permissions": [
"identity",
"http://*/*",
"https://*/*",
"storage"
],
"oauth2": {
"client_id": **************,
"scopes": ["openid", "email", "profile"],
"hd": "zabuton.co.jp"
}
}
background.js
var clientId = "********************";
var redirectURL = chrome.identity.getRedirectURL();
var url = "https://accounts.google.com/o/oauth2/v2/auth?" +
"scope=email&" +
"response_type=token&" +
"client_id=" + encodeURIComponent(clientId) + "&" +
"redirect_uri=" + encodeURIComponent(redirectURL) + "&" +
"prompt=consent";;
chrome.identity.launchWebAuthFlow({ url: url, interactive: true }, function(redirect_url) {
console.log('redirect_url = ' + redirect_url);
if (chrome.runtime.lastError) {
console.error(chrome.runtime.lastError.message);
}
});
安装运行后,输出日志“无法加载授权页面”。
launchWebAuthFlow 内部的redirect_url 未定义。
如果你知道我的错误,请教我。
【问题讨论】:
-
您确定该网站没有被屏蔽?换句话说,您是否在 devtools 网络面板或 Fiddler、WireShark 等独立流量嗅探器中看到正在发送的网络请求和收到的响应?
标签: javascript google-chrome google-chrome-extension