目標:在iOS應用程序中從谷歌完成Oauth2。Google Oauth重定向到ios自定義網址
我使用phonegap,因此我在瀏覽器中啓動了oauth。我希望重定向成爲我的應用的自定義網址,以便我可以存儲該令牌。我已閱讀this post關於如何處理重定向,但我仍然困惑。什麼是我應該在我的info.plist中輸入的自定義網址?什麼重定向到我傳遞到oauth頁面?
var redirect_url='com.example.myapp:/oauth2Callback'
var url="https://accounts.google.com/o/oauth2/auth?response_type=code&client_id=" + client_id + "&state=" + state + "&redirect_uri="+redirect_url+"&scope=" + scope;
任何有經驗的人?