OAuthとChrome拡張機能を統合しようとしています。私はgoogleのチュートリアルに従っています:https://developer.chrome.com/extensions/tut_oauth.htmlOAuthを使用したGoogle Chrome拡張機能
私はbackground.js(私が定義し、background.htmlによって読み込まれています)からExOauthを作成します。
onAuthorized = function() {
// Start my application logic.
};
私はここで何かをしないのです。ここで
var oauth = ChromeExOAuth.initBackgroundPage({
'request_url': 'https://www.google.com/accounts/OAuthGetRequestToken',
'authorize_url': 'https://www.google.com/accounts/OAuthAuthorizeToken',
'access_url': 'https://www.google.com/accounts/OAuthGetAccessToken',
'consumer_key': 'anonymous',
'consumer_secret': 'anonymous',
'scope': 'https://docs.google.com/feeds/',
'app_name': Test app'
});
oauth.authorize(onAuthorized);
はOnAuthorized方法ですか?拡張機能を読み込むと、いくつかの "リダイレクト...."タブが開きます。
は、私はまだこの問題を持っていることを修正します..._ oauthsimple.jsを使用して、新しいタブを開く続け
。どのように解決しましたか? – avi