Blank page on node.js passport facebook redirect on mobile -
i'm building webservice based on node.js, used passport authentication following setup: on calling authentication:
clientid: "aaaa", clientsecret: "bbbb", callbackurl = "http://cccc/facebook/loggedin"; app.get('/auth/facebook', passport.authenticate('facebook', {scope : ['email', 'publish_actions', 'rsvp_event']}, {display: ['touch']}));
everything works fine via chrome on desktop pc , redirected parameters however, when trying exact same thing on ipad/android phone, browser leave me hanging in:
https://m.facebook.com/dialog/oauth?redirect_uri=http%4a%2f%2fcccc%2ffacebook%2floggedin&scope=email%2cpublish_actions%2crsvp_event&response_type=code&type=web_server&client_id=aaaa
with blank page...
has tackled that?
edit :when force browser on desktop mode show page supposed..why work desktop not mobile?
edit :seems mobile problem browser
Comments
Post a Comment