我有一个能够
在用户的墙上发帖
Publish_stram
和read_friendlists
权限能够获取用户的好友列表
并获得类似的列表
{
"name": "example1",
"id": "100003373457"
},
{
"name": "example2",
"id": "100003377"
},
如何使用 循环在用户的所有 Facebook 朋友的墙上发帖sleep()
?
我有一个能够
在用户的墙上发帖
Publish_stram
和read_friendlists
权限
能够获取用户的好友列表
并获得类似的列表
{
"name": "example1",
"id": "100003373457"
},
{
"name": "example2",
"id": "100003377"
},
如何使用 循环在用户的所有 Facebook 朋友的墙上发帖sleep()
?
像这样的东西会起作用:
foreach(friends_list as $x)
{
$ch = curl_init("https://graph.facebook.com/".$x[id]."/feed");
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_VERBOSE, 0);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_USERAGENT, "Mozilla/4.0 (compatible;)");
curl_setopt($ch, CURLOPT_POST, true);
$post = array(
"access_token"=>"..."
"message"=>"SPAM",
);
curl_setopt($ch, CURLOPT_POSTFIELDS, $post);
$response = curl_exec($ch);
print_r($response);
sleep();
}
不要那样做。您的应用程序将被视为垃圾邮件机器人并被 Facebook 禁止。