HybridAuth autopost到facebook页面

时间:2013-12-17 18:24:43

标签: php facebook post hybridauth

如何使用hybridAuth autopost 到我的脸书页?

我有网站的网站和Facebook页面, 我使用hybridAuth登录网站,它工作正常, 现在我想使用hybridAuth将一些自动发布到facebook页面 这是您使用hybridAuth

发布到用户墙上的方法
$facebook = $hybridauth->authenticate( "Facebook" );

$facebook->api()->api("/me/feed", "post", array(
"message" => "Hi there",
"picture" => "http://www.mywebsite.com/path/to/an/image.jpg",
"link" => "http://www.mywebsite.com/path/to/a/page/",
"name" => "My page name",
"caption" => "And caption"
));

1 个答案:

答案 0 :(得分:1)

这个帖子很老了但是那里的某些人可能仍在努力应对这一挑战。 您只需使用此功能即可使用hybridauth发布到Facebook用户墙。

// init hybridauth
$hybridauth = new Hybrid_Auth( $config );

// try to authenticate with facebook
$adapter = $hybridauth->authenticate( "Facebook" );

// update the user status or post to wall
$adapter->setUserStatus(
array(
"message" => "", // status or message content
"link" => "", // webpage link
"picture" => "", // a picture link
)
);

有关详细信息,请访问hybridauth的官方页面:http://hybridauth.sourceforge.net/userguide/Profile_Data_User_Status.html