Loading...
 
Features / Usability

Features / Usability


Re: Social Login unable to auto create user

posts: 400

Okay, looks like the access token is not being created in the getFacebookAccessToken() method in /lib/socialnetworkslib.php. Please take out the code I asked you to put in, and place new code after row 221, which has the following in it:

$json_decoded_ret = json_decode($ret, true);

After that line, place the following:

var_dump(['ret' => $ret]);
var_dump(['json' => $json_decoded_ret]);
exit;

And try to log in using Facebook and let me know what the results are (eliminating any private data)

There are no comments at this time.