私はPHPでFacebookのファンゲートページを構築しています。100% 動作しますが、fb.php などの静的ページでのみ機能します。今、私はこのようなものが必要です:
FB.php>>>
$id=$_GET['id'];
///and need to put this variable into NEXT and CANCEL url.. something like that
> $loginUrl = $facebook->getLoginUrl(array(
'canvas' => 1,
'fbconnect' => 1,
'display' => 'page',
'req_perms' => 'user_likes',
'next' => 'somesite.com/FB.php?id=$id',
'cancel_url'=> 'somesite.com/FB.php?id=$id'