Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I just wrote a very simple PHP-script for an fanpage. As I tested it out, the script works fine for me. Other users complain, that they see only a blank page.

<?php
require_once 'facebook.php';  
$app_id = "xxx";
$app_secret = "xxx";  
$facebook = new Facebook(array(  'appId' => $app_id,  'secret' => $app_secret,  'cookie' => true  ));    
$signed_request = $facebook -> getSignedRequest();    
$country = $signed_request["user"]["country"];  
$locale = $signed_request["user"]["locale"];

if($locale == "de_DE") {
echo "<img src='1.jpg'>";}
else {
echo "<img src='2.jpg'>";}
?>

Do you have any idea where I made a mistake?

Cheers,

Ben

share|improve this question
Have you asked them to give permission to this app first? – Edison Jul 13 '12 at 18:54
He’s not asking for any data that would require a permission. – CBroe Jul 13 '12 at 18:57
No, I did not ask for permission. As far as I understand the documentation, I don't need any permissions for the data I request. Basically I just ask for the user's language... – Benjamin Mewes Jul 13 '12 at 19:13

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.