Created
October 4, 2013 22:22
-
-
Save tommynyquist/6833825 to your computer and use it in GitHub Desktop.
chrome.identiy interactive auth
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
chrome.identity.getAuthToken({ 'interactive': true }, function() { | |
if (!chrome.runtime.lastError) { | |
console.log("requestAuthorization: Authorized"); | |
authorized(); | |
} | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment