Just find these two lines in your facebook login module's base_facebook.php file:
$response_params = array();
parse_str($access_token_response, $response_params);
and replace these 2 lines with following line:
$response_params = json_decode($access_token_response, true);
parse_str($access_token_response, $response_params);
and replace these 2 lines with following line:
$response_params = json_decode($access_token_response, true);
Comments
Post a Comment