从Facebook赞按钮获取Facebook页面

时间:2013-12-28 11:13:00

标签: facebook

我一直很好奇哪些页面有点像按钮,如果检查它只包含一个指向应用程序ID的链接,当访问时会出现“未找到”错误。

https://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.facebook.com%2FGoGoEntertainment&send=false&layout=standard&width=230&show_faces=false&action=like&colorscheme=light&font&height=25&appId=XXXXXXXXXXXXX

有没有一种从按钮中提取页面的好方法?

1 个答案:

答案 0 :(得分:0)

href参数是你想要的。以下是如何轻松排除它:

$url = 'https://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.facebook.com%2FGoGoEntertainment&send=false&layout=standard&width=230&show_faces=false&action=like&colorscheme=light&font&height=25&appId=XXXXXXXXXXXXX';
$url = parse_url($url);
parse_str($url['query'], $query);
var_dump($query['href']);