我有一个用PHP编写的博客网站,它使用php curl传递简单的http post请求,在twitter下发布新的博客文章并自动发布博客。
我有一个博客网站的Facebook页面,并希望将更新发布到页面上的墙上,是否有一种简单的方法可以做到这一点?
我真正想要的是一个网址和一组参数作为一个http发布请求包裹起来。
请注意,这是在新样式页面上发布到墙上而不是个人资料。
提前致谢。
答案 0 :(得分:65)
从github获取PHP SDK并运行以下代码:
<?php
$attachment = array(
'message' => 'this is my message',
'name' => 'This is my demo Facebook application!',
'caption' => "Caption of the Post",
'link' => 'http://mylink.com',
'description' => 'this is a description',
'picture' => 'http://mysite.com/pic.gif',
'actions' => array(
array(
'name' => 'Get Search',
'link' => 'http://www.google.com'
)
)
);
$result = $facebook->api('/me/feed/', 'post', $attachment);
以上代码会将消息发布到您的墙上...如果您想要发布到您的朋友或其他墙上,请将me
替换为该用户的Facebook用户ID ..有关详细信息,请参阅出来的API文档。
答案 1 :(得分:9)
这对我有用:
try {
$statusUpdate = $facebook->api('/me/feed', 'post',
array('name'=>'My APP on Facebook','message'=> 'I am here working',
'privacy'=> array('value'=>'CUSTOM','friends'=>'SELF'),
'description'=>'testing my description',
'picture'=>'https://fbcdn-photos-a.akamaihd.net/mypicture.gif',
'caption'=>'apps.facebook.com/myapp','link'=>'http://apps.facebook.com/myapp'));
} catch (FacebookApiException $e) {
d($e);
}
答案 2 :(得分:8)
Harish在这里有答案 - 除了你需要在身份验证时请求manage_pages
权限,然后在发布时使用page-id
而不是me
....
$result = $facebook->api('page-id/feed/','post',$attachment);
答案 3 :(得分:5)
如Frank所指出,如果不创建应用程序并使用模板化的Feed发布者,则无法自动发布到Facebook墙。
您唯一能做的就是使用他们提供的“共享”小部件,这需要用户进行互动。
答案 4 :(得分:3)
如果您的博客输出了RSS Feed,您可以使用Facebook的“RSS Graffiti”应用程序将该Feed发布到Facebook的墙上。还有其他RSS Facebook应用程序;只搜索“Facebook for RSS apps”......
答案 5 :(得分:0)
您可以通过选择HTTP方法并设置可选参数来进行api调用:
$facebook->api('/me/feed/', 'post', array(
'message' => 'I want to display this message on my wall'
));
提交帖子到Facebook Wall:
包含fbConfig.php文件以连接Facebook API并获取 访问令牌。
发布消息,名称,链接,描述和图片将提交到Facebook墙。 将显示提交后状态。
如果FB访问令牌($ accessToken)不可用,则为Facebook登录 将生成URL并将用户重定向到FB登录 页。
<?php
//Include FB config file
require_once 'fbConfig.php';
if(isset($accessToken)){
if(isset($_SESSION['facebook_access_token'])){
$fb->setDefaultAccessToken($_SESSION['facebook_access_token']);
}else{
// Put short-lived access token in session
$_SESSION['facebook_access_token'] = (string) $accessToken;
// OAuth 2.0 client handler helps to manage access tokens
$oAuth2Client = $fb->getOAuth2Client();
// Exchanges a short-lived access token for a long-lived one
$longLivedAccessToken = $oAuth2Client->getLongLivedAccessToken($_SESSION['facebook_access_token']);
$_SESSION['facebook_access_token'] = (string) $longLivedAccessToken;
// Set default access token to be used in script
$fb->setDefaultAccessToken($_SESSION['facebook_access_token']);
}
//FB post content
$message = 'Test message from CodexWorld.com website';
$title = 'Post From Website';
$link = 'http://www.codexworld.com/';
$description = 'CodexWorld is a programming blog.';
$picture = 'http://www.codexworld.com/wp-content/uploads/2015/12/www-codexworld-com-programming-blog.png';
$attachment = array(
'message' => $message,
'name' => $title,
'link' => $link,
'description' => $description,
'picture'=>$picture,
);
try{
//Post to Facebook
$fb->post('/me/feed', $attachment, $accessToken);
//Display post submission status
echo 'The post was submitted successfully to Facebook timeline.';
}catch(FacebookResponseException $e){
echo 'Graph returned an error: ' . $e->getMessage();
exit;
}catch(FacebookSDKException $e){
echo 'Facebook SDK returned an error: ' . $e->getMessage();
exit;
}
}else{
//Get FB login URL
$fbLoginURL = $helper->getLoginUrl($redirectURL, $fbPermissions);
//Redirect to FB login
header("Location:".$fbLoginURL);
}
Refrences:
https://github.com/facebookarchive/facebook-php-sdk
https://developers.facebook.com/docs/pages/publishing/
https://developers.facebook.com/docs/php/gettingstarted
http://www.pontikis.net/blog/auto_post_on_facebook_with_php
https://www.codexworld.com/post-to-facebook-wall-from-website-php-sdk/