我正在尝试通过php生成一个提要对话框来发布用户墙上的内容。 我已经获得了扩展权限。已经定义和测试了使用的变量。仍然代码不起作用。 谁能告诉我以下代码有什么问题:
{}
答案 0 :(得分:0)
显然你的字符串连接有问题:
$feed_url = "http://www.facebook.com/dialog/feed?app_id="
. $app_id . "&redirect_uri=" . urlencode($canvas_page)
. "&message=" . $message
. "&link=" . $linky
. "&picture=" . $imageurl
. "&name=" . $name;
if (empty($_REQUEST["post_id"])) {
echo("<script> top.location.href='" . $feed_url . "'</script>");
} else {
echo ("Feed Post Id: " . $_REQUEST["post_id"]);
}
也是$linky
或$link
?