我正在寻找一个好的、简单的 PHP 函数来获取我最新的 Facebook 状态更新。有人知道吗?
谢谢!
编辑:我在下面添加了一个半解决方案。
或者是否有人知道阅读 RSS 提要并吐出最近状态更新的好方法?
快速检查PEAR发现Services_Facebook
这是一个不完整的答案,但这是我到目前为止所得到的:
首先:在 FB 上添加开发者应用程序。然后创建一个新的应用程序。随心所欲地称呼它。
二:下载PHP客户端。 将其转储到您的虚拟主机上的某个位置,即 /facebook/
第三:将以下初学者代码复制到一个php文件中:
<?php
require_once('facebook/php/facebook.php');
$facebook = new Facebook("YOUR_API_KEY","YOUR_SECRET_KEY");
$result = $facebook->api_client->fql_query("SELECT status FROM user WHERE uid = YOURIDNUMBER");
// OR --- they both get the same data
$result = $facebook->api_client->users_getInfo(YOURIDNUMBER,'status');
print_r($result);
echo "<pre>Debug:" . print_r($facebook,true) . "</pre>"; // debug info
?>
其他信息:
我希望这可以帮助某人入门!
编辑:似乎 FB 不会让您访问某人的状态,即使 offline_access 已打开,除非您是那个人或他们的朋友(取决于他们的隐私设置)。
但是我确实做到了,最终设法在新的个人资料版本中找到了 RSS 提要:http: //www.new.facebook.com/minifeed.php?filter=11
我找到了获取您最新的 Facebook 状态的方法。这就是你的做法:
1)创建一个 facebook 应用程序,并复制您的应用程序密码和应用程序 ID。
2) 授予应用程序 read_stream 和 offline_access 您的个人资料。( http://developers.facebook.com/docs/authentication/permissions ) 要获取您的最新状态,应用程序需要一个 access_token。授予离线访问权限后,访问令牌应该“永不”过期。最简单的方法是单击此代码生成的按钮:(请务必填写“您的应用程序 ID”并将 cookie 设置为 true!)
<fb:login-button perms="read_stream,offline_access"></fb:login-button>
<div id="fb-root"></div>
<script src="http://connect.facebook.net/en_US/all.js"></script>
<script>FB.init({appId: 'your app id', status: true, cookie: true, xfbml: true});</script>
3) 现在尝试找出它正在使用什么 access_token。access_token 保存在 fbs_appId cookie 中。使用浏览器或使用$_COOKIE['fbs_appId']
. 寻找access_token=...
。
4)现在您有一个(希望)永不过期的 access_token,您可以使用以下代码:
$access_token='xxxxxxxxxxxxxxxxxxxx';
$appId='123456789132456789';
$appSecret='xxxxxxxxxxxxxxxxxxxx';
$profileId='123456789';
//http://github.com/facebook/php-sdk/blob/master/src/facebook.php
require 'facebook.php';
$facebook = new Facebook(array('appId' => $appId,'secret' => $appSecret));
$response = $facebook->api('/'.$profileId.'/feed?limit=1&access_token='.$access_token);
5)消息部分应位于:$response['data'][0]['message']
我不知道访问令牌的有效期有多长。脸书说:
使您的应用程序能够随时代表用户执行授权请求。默认情况下,大多数访问令牌会在短时间内过期,以确保应用程序仅在用户积极使用应用程序时代表用户发出请求。此权限使我们的 OAuth 端点返回的访问令牌长期有效。
如果您只想获取最新状态,这是一个非常简单的功能。它不依赖于 Facebook SDK 或任何东西。您只需要 CURL 和 JSON 支持。
我似乎从不与 PEAR 相处,但如果你的运气比我好,那么 PEAR 解决方案似乎是长期的最佳途径。
另一个想法是探索Facebook 开发者 API库,看看它是否能给你提供你想要的东西。
最后,曾经有一种方法可以获取 RSS 提要……但我似乎找不到任何有用的说明,但如果你感兴趣的话,你可能会在 Facebook 的帮助下四处寻找。我的最终看起来像这样:
http://www.new.facebook.com/feeds/status.php?id=[idnumber]&viewer=[viewer]&key=[key]&format=rss20
我使用 Jens 的帖子来检索有效的 access_token。然后,我使用以下代码从 xml 文件中提取了状态消息和发布时间(您可以更改 $limit 以显示更多或更少的状态消息,或使用表单进行更改)。
请务必输入您的 Facebook ID 和从您创建的应用程序中获得的访问令牌(请参阅Jens 的帖子)。您可以在此处检查此脚本的输出。
玩得开心!
<?php
if(isset($_POST['limit'])) {
$limit = $_POST['limit'];
}
else {
$limit = 3; // number of status messages to display
}
$f = fopen ("https://api.facebook.com/method/status.get?uid=YOUR_FACEBOOK_ID&limit=".$limit."&access_token=YOUR_ACCESS_TOKEN", "r");
while ($line= htmlentities(fgets($f))) {
if ($line===FALSE) print ("FALSE\n");
else
{
$content = $content." ".$line;
}
}
fclose ($f);
$message = explode("<message>", $content); // search for the <message> tag
$message_cnt = count($message);
$msg_index = 0;
$time = explode("<time>", $content); // search for the <time> tag
for($i=1; $i<$message_cnt; $i++)
{
$tmp = explode("</message>", $message[$i]);
$msg[$msg_index] = $tmp[0]; // status message
$tmp2 = explode("</time>", $time[$i]);
$t[$msg_index++] = $tmp2[0]; // time of posting
}
for($i=0; $i<$msg_index; $i++)
{
echo("<span class=\"status\">".preg_replace('!\015\012|\015|\012!','<br>',$msg[$i])."</span><br>\n
<span class=\"date\">on ".date("d.m.Y", $t[$i])." at ".date("H:i",$t[$i])."</span><br><br>\n");
}
?>
在过去的几天里,我尝试了很多教程,但都没有奏效。我认为这可能是由于 facebook 改变了他们的 api 要求。这是我发现目前唯一有效的方法:
http://www.deanblog.co.uk/article/13/adding-a-facebook-status-feed-to-your-website-with-php
只需使用 PHPforFB 框架(www.phpforfb.com/en/)以最快的方式。
代码如下所示:
require_once('phpforfb_framework.php');
$structInit = array('app_id' => APP_ID,'app_name' => APP_NAME,'sec_key' => APP_SECKEY);
$FacebookAPP = new PHPforFB($structInit);
if($FacebookAPP->lastErrorCode>0){
//Creation failed => Display error message and exit
echo "PHPforFB Error: ".$FacebookAPP->lastErrorCode." -> ".$FacebookAPP->lastError;
}else{
//PHPforFB framework established
if($FacebookAPP->userLoggedIn === TRUE){
//If the user is logged in at Facebook:
//Here you can determine if the user has at least once before
//granted basic permissions to your application.
if($FacebookAPP->userAuthenticated === FALSE){
//The user has not yet granted permissions
//**your code here**
}else{
//The user has already granted permissions, therefore his Facebook ID
//is known to us. It is always available in $FacebookAPP->userID:
$userID = $FacebookAPP->userID;
//**your code here**
}
}
}
由于我无法使用 API 路由,我选择了在以下位置找到的 RSS:http: //www.new.facebook.com/minifeed.php?filter=11
并使用以下名为 StatusPress的 PHP 函数,以及我自己的一些修改,来解析我的 Facebook 状态的 RSS 提要。效果很好!
<?php
// see http://github.com/facebook/php-sdk/blob/master/facebook.php
require './facebook.php';
// Create our Application instance.
// see http://www.youtube.com/watch?v=jYqx-RtmkeU for how to get these numbers
$facebook = new Facebook(array('appId' => 'XXX','secret' => 'XXX'));
// This call will always work since we are fetching public data.
// this could be /username or /username/friends etc...
// see developer api for FQL for examples
$status = $facebook->api('/haanmc/feed?limit=1');
?>
<p><?php print $status['data'][0]['message']; ?></p>
<p>Likes: <?php print $status['data'][0]['likes']; ?> | Comments: <?php print count($status['data'][0]['comments']['data']); ?></p>
<textarea style="width: 95%; height: 600px;"><?php print_r($status); ?></textarea>