Kullanıcılara Chrome Uzantımda Google Kimlik Doğrulama sağlamak için Chrome Kimlik API'sı ile çalışıyorum. chrome.identity.getAuthToken çalışmıyor
Google'da resmi öğretici izledi: link Chrome Identity API- i bu kodu eklenmiş Authentification tetiklemek için manifest.json ve Müşteri kimliği ve Kapsamları
- izinleri eklendi benim Background.js
sorun nedir için başka bir zaman yönlendirildi am başarılı bir kimlik doğrulama bu giriş sayfasına
chrome://chrome-signin/?source=5
ama sonra yönlendirildi am uzantısı yürütüldüğünde
sorun nedir?
manifest.json
{
"name": "My Extension",
"short_name": "Ex App",
"version": "0.1",
"description": "description",
"manifest_version": 2,
"icons": { "128": "ICONE.png", "48": "ICONE1.png" },
"permissions": ["contextMenus", "identity", "cookies", "http://*/*", "https://*/*", "<all_urls>", "unlimitedStorage"],
"browser_action": {
"default_title": "Title",
"default_icon": "imgIcone.png"
},
"oauth2": {
"client_id": "xxxxxxx",
"scopes": [
"https://www.googleapis.com/auth/userinfo.email"
]
},
"background": {
"scripts": ["background.js"]
},
"content_scripts" : [
{
"matches": ["*://*.google.com/*"],
"js": ["gadget/js/jquery.js","gadget/js/contactcard.js"],
"css": ["gadget/css/contactcard.css"],
"all_frames": true
}],
"content_security_policy": "script-src 'self' 'unsafe-eval' https://apis.google.com/; object-src 'self'",
"web_accessible_resources": ["img.png","gadget/css/contactcard.css","gadget/img/extension/crec.png"]
}
background.js:
chrome.identity.getAuthToken({ 'interactive': true }, function(token) {
// Use the token.
console.log(token);
});
olası yinelenen [Hata: Chrome uzantısı için menşe \ _mismatch] (http://stackoverflow.com/questions/31134738/error-origin-mismatch-for-chrome-extension) – Madhan
Yok sorunuzun başlığını değiştirmeniz gerekiyor; Herkes bir cevabın olduğunu görebilir ve cevapları kabul edilebilir olarak işaretleyebilir (bunu yapabilmeniz için bir gecikme olabilir) ve bunun da yanıtlamaya gerek olmadığını belirtebilirsiniz. – Xan
@Xan Bilgileriniz için teşekkürler! – user2602584