私はPythonを使用してGoogle App Engineを使用しており、OAuth2.0
(Google +ではなくGoogleアカウント)をアプリケーションへのログイン媒体として使用していますが、過去半年間は問題なく機能しており、毎回表示されるメッセージがあります。次のようなアプリケーションを実行します。
アプリケーションをロードするたびにこれが促進され続けるのはなぜですか? そして第二に、なぜこのアプリを Google+ に接続したと言っているのですか (私は 1 つも持っていません)、使用したデコレータはOAuth2Decorator
. 誰かが助けてくれることを願っています。
Edit2私はコード例を求められました.ここではjavascript auth2.0フロー全体です.
var CLIENT_ID = 'xxxxxxxx.apps.googleusercontent.com';
var SCOPES = 'https://www.googleapis.com/auth/drive.file';
function checkAuth() { gapi.auth.init(load); }
function load() { gapi.client.load('drive', 'v2', auth); }
function auth() {
gapi.auth.authorize(
{'client_id': CLIENT_ID, 'scope': SCOPES, 'immediate': true},
handleAuthResult);
}
function handleClientLoad() {
window.setTimeout(checkAuth, 1);
}
function handleAuthResult(authResult) {
//$('#intro').center().fadeIn('slow');
if (authResult && !authResult.error) {
// Access token has been successfully retrieved, requests can be sent to the API.
} else {
// No access token could be retrieved, show the button to start the authorization flow.
}
}