How to re-ask declined permissions using parse.facebookutils.login in JavaScript?

167 Views Asked by At

How to re-ask declined permissions using parse.facebookutils.login

Parse.FacebookUtils.logIn('public_profile,email', {
   success: function(user) 
   {

   },
   error: function(error) 
   {
       console.log(error); 
       console.log("User cancelled the Facebook login or did not fully authorize.");
   }
});
0

There are 0 best solutions below