2011-08-28 73 views
0

我使用OAuth 2.0訪問Google API。在documentation指定重定向用戶身份驗證網址 -Google OAuth 2.0清除應用程序會話變量

https://accounts.google.com/o/oauth2/auth? 
    client_id=21302922996.apps.googleusercontent.com& 
    redirect_uri=urn:ietf:wg:oauth:2.0:oob& 
    scope=https://www.google.com/m8/feeds/& 
    response_type=code 

在成功驗證之後,它重定向我回來驗證碼REDIRECT_URI,但它也清除我的應用程序的會話變量。我嘗試了不同的變化,但問題仍然存在。我正在使用PHP的$ _SESSION進行會話管理,並且也集成了其他API,它可以很好地與其他API(例如Twitter)

回答

相關問題