I've created a simple Facebook Reveal tab, which was working some time ago until I checked again today and it seems only to be working on https.
This is what I get on an http page:
if I var_dump the Facebook object (using Facebook's PHP SDK):
object(Facebook)#1 (7) {
["appId":protected]=>
string(15) "#####"
["appSecret":protected]=>
string(32) "#####"
["user":protected]=>
NULL
["signedRequest":protected]=>
NULL
["state":protected]=>
NULL
["accessToken":protected]=>
NULL
["fileUploadSupport":protected]=>
bool(false)
}
If I var dump
$signed_request = $facebook->getSignedRequest();
I get NULL
What about people who land using http?
I tried a header('Location') to the https URL for the same page and I tried specifying the https page for both Page Tab URL and Secure Page Tab URL in the App settings but both do not seem to work.
Does anybody else have this problem? Is this because of a due Facebook update?
thanks!