php - Fatal error: Call to undefined method getLoginStatusUrl -
facebook php sdk calls facebook::getloginstatusurl()
method, method not exist in sdk.
i'm using following code:
if ($user) { $logouturl = $facebook->getlogouturl(); } else { $statusurl = $facebook->getloginstatusurl(); $loginurl = $facebook->getloginurl(); }
what do?
actually in latest release of sdk have removed deprecated getloginstatusurl
.
it in fact not of such use, that's why have removed guess.
anyways, can use getloginurl
Comments
Post a Comment