IBM MobileFirst Platform を使用して作成されているハイブリッド・アプリケーションに、ソーシャル・ログイン (facebook、Google、Twitter など) を実装する必要があります。
mobilefirst ハイブリッド アプリケーションに最適なソーシャル ログイン方法はどれですか?
Google ログインの場合、次のコードで hello.js を使用しています。
MobileFirst で以下のコードを使用することは可能ですか??. Google は、それを介してのみ応答を提供しRedirect URIs
ます。どうすれば MobileFirst ハイブリッド アプリケーションへの応答を取得できますか??
hello.init({
google : GOOGLE_API_ID
},{scope: 'email' , redirect_uri:'redirect.html'});
hello.on('auth.login', function(auth){
// call user information, for the given network
hello( "google" ).api("me").then(function(json){
alert("Your email is "+ json.email);
}, function(e){
alert("Whoops! " + e.error.message );
});
});
提案してください....