Facebook callback has started appending #_=_ hash underscore to the Return URL
#_=_
Does anyone know why? What is the solution?
For PHP SDK users
I fixed the problem simply by removing the extra part before forwarding.
$loginURL = $helper->getLoginUrl($redirectURL, $fbPermissions); $loginURL = str_replace("#_=_", "", $loginURL); header("Location: " . $loginURL);