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 have an application that posts open graph story in facebook. I have configured the action link as a redirection to our application. When we click the action link url in the story posted for the admin users are seeing a facebook dialog saying that Go to the application. But in the case of the test users I don't see the alert, instead I see an inline error saying that there was an error in the application. I changed the email id of the test user and login using that the result is the same. Also I changed the sandbox mode to off when the test user posting the story.

Here is the endpoint url code

$this->layout = 'json';
    header("Pragma: no-cache");
    header("Cache-Control: no-store, no-cache, max-age=0, must-revalidate");
    header('Content-Type: application/json');

    $output = array();
    $parsed_data = $this->parse_signed_request($_REQUEST['signed_request'],$this->fbsecret);
    $actionid = $parsed_data['actions'][0]['id'];
    $object_url = $parsed_data['objects'][0]['url'];
    $this->log('Action id: ' . $actionid);
    $this->log('Object URL: ' . $object_url);
    $output['redirect'] = $object_url;

    $this->set('json', json_encode($output));
share|improve this question
Well, can you paste your source code here. – devilsmind Jan 17 at 4:35
@devilsmind I have updated it can u take a look at it – Prasad T V Jan 17 at 8:44

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.