dflow Posted July 3, 2012 Share Posted July 3, 2012 i'm having an issue with passing app_data after a new app install redirect using the `Facebook PHP SDK` $loginUrl = $facebook->getLoginUrl( array( 'scope' => 'email,manage_pages', 'redirect_uri' => $fbconfig['appPageUrl'], ) ); $decodedSignedRequest = parse_signed_request($_REQUEST['signed_request'], $fbconfig['secret']); if (isset($decodedSignedRequest['app_data'])){ echo $app_data=$decodedSignedRequest['app_data']; header("Location: success.php?id=$app_data"); die();} if the app is installed i get app_data from the signed_request without a problem any suggestions? thanks Quote Link to comment https://forums.phpfreaks.com/topic/265147-facebook-php-sdk-no-app_data-after-user-app-installation/ Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.