0

我已经在 facebook 上看到了很多使用 php 发布的帖子,并且已经使用了一些并设法在我的 facebook 粉丝页面上自动发布.....但是.....只有拥有我的应用程序的用户才能在我的粉丝专页

不是一种在我的粉丝页面上发布并且所有成员都可以看到的方式吗?...我是我页面的管理员...我接受流发布和管理页面的应用程序权限,即使是离线访问,即使它不需要。

有没有人知道我如何自动发布并且所有人都可以看到它们?我更喜欢 php 但我不介意即使它使用 js

4

1 回答 1

1

您需要“manage_pages”权限才能在页面墙上发布并检查您的页面是否已发布

 $attachment =  array(
            'access_token' => $pageAccessToken,
            'name' => $title,
            'link' => $url,
            'description' => $desc
            );
            }

            $ch = curl_init();
            curl_setopt($ch, CURLOPT_URL,'https://graph.facebook.com/'.$pid.'/feed');
            curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE);
            curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 2);
            curl_setopt($ch, CURLOPT_POST, true);
            curl_setopt($ch, CURLOPT_POSTFIELDS, $attachment);
            curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);  //to suppress the curl output 
            $result = curl_exec($ch);
            curl_close ($ch);
于 2012-04-17T13:55:57.293 回答