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));