puneetkay/Facebook-PHP-CodeIgniter

login not working anymore.

mavsKogaC opened this issue ยท 9 comments

HI sir, im using your library. but this day im not able to perform login facebook i dont know why.. all my project is not working anymore hope you can help me thanks !

Have you found any solution?

@oguzhanayyldz not yet but i think we need to update PHP SDK to 4 and up ..

@oguzhanayyldz you can try this one im using it now. and its work well

Facebook PHP SDK (v.3.2.3) has been deprecated. So this library won't work anymore.
For now you can get the latest PHP SDK v5.x here: https://github.com/facebook/php-graph-sdk

I'll try to integrate it as CodeIgniter lib as soon as possible.

@puneetkay thanks ๐Ÿ‘

Thanks @puneetkay
Hope your solution will be release soon. My project was down..................
Really thanks

I have made small fix and it's working now
base_facebook.php start from 819 line

if (empty($access_token_response)) {
     return false;
}

//Fix facebook login
$v = json_decode($access_token_response);
$access_token_response = http_build_query($v);


Thanks @Nefro9
Its working for me.