The Story:
I am looking for some social integration experts to enlighten me this puzzle here. My web server is using spring security to authenticate user signin,signup. I recently implemented spring social in my web server, all went very smooth. Take fb as example, when user login from facebook, spring social will build outh url and redirect user to facebook. Once user authenticated in facebook, it will redirect them back to my site.
The Puzzle:
I need to implement my mobile app(html5 + phonegap) having same "login" capability. I went though the facebook integration page. There are a few way to do authentication for html5 app. I chose the server side implementation: http://developers.facebook.com/docs/authentication/server-side/ over client side login, because I still need spring assist to check if email exist in my web server, redirect signup page otherwise.
The first problem I encounter is redirect in mobile app, I need pop up window to redirect to provider login page instead of app window. I managed to get redirect url through ajax call and open new window in childbrowser phonegap plugin. Now the problem is when user authenticated through provider, there is no easy way for server to inform "user authenticated" to client because it is in separated browser.
sample code
onFBlogin: function(){
Ext.Ajax.request({
url: APP.domain + "api/mobile/signin/facebook.json",
method: 'POST',
success: function(result, request) {
var json = JSON.parse(result.responseText);
window.plugins.childBrowser.onLocationChange = function (url) {
if(url==APP.domain+"api/mobile/success"){
window.plugins.childBrowser.close();
}
};
window.plugins.childBrowser.showWebPage(json.outhurl,{ showLocationBar: true });
},
failure: function(result, request) {
console.log("request facebook signin redirect url" + result);
},
});
}
Normally, in spring security if user authenticated through my rest api, client can post request and getting authenticated token through successful call back. I can reuse those tokens for each rest api call. According to above code. I am not able to know if the authentication completed and when should I send token from server to client.
I'd appreciated if you could throw me some idea. Thanks!