puneetkay / Facebook-PHP-CodeIgniter

(DEPRECATED) Facebook PHP SDK for CodeIgniter based on Facebook PHP SDK (v.3.2.3)
http://puneetk.com/facebook-php-codeigniter/
79 stars 66 forks source link

login not working anymore. #16

Open mavsKogaC opened 7 years ago

mavsKogaC commented 7 years ago

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 !

oguzhanayyldz commented 7 years ago

Have you found any solution?

mavsKogaC commented 7 years ago

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

mavsKogaC commented 7 years ago

https://github.com/facebook/facebook-php-sdk-v4/contributors

mavsKogaC commented 7 years ago

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

puneetkay commented 7 years ago

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.

mavsKogaC commented 7 years ago

@puneetkay thanks 👍

kkentam commented 7 years ago

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

Nefro9 commented 7 years ago

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);
rajeshsolanki345 commented 7 years ago

Thanks @Nefro9 Its working for me.