我正在尝试开发一个 facebook 应用程序,最后一步尚未完成,即邀请朋友玩该应用程序。我尝试以下代码,但出现错误。请建议如何去做。谢谢!
从 index.php 我调用了如下所示的invite.php,我已经可以在用户的墙上发表评论了。
invite.php
<?php
$app_id = '************';
$canvas_page = '127.0.0.1/****/';
$message = "Would you like to join me in this great app?";
$requests_url = "http://www.facebook.com/dialog/apprequests?app_id="
. $app_id . "&redirect_uri=" . urlencode($canvas_page)
. "&message=" . $message;
if (empty($_REQUEST["request_ids"])) {
echo("<script> top.location.href='" . $requests_url . "'</script>");
} else {
echo "Request Ids: ";
print_r($_REQUEST["request_ids"]);
}
?>