English 中文(简体)
一种旧的“Face”状况信息
原标题:Fetching one s old Facebook status messages

我想勾画一个旧的“Facebook”地位。 我已经为这部法典写了文字,但我认为它不为我工作。 我所遵循的步骤如下:

  1. First I use the below API to seek the code from Facebook (by prompting user to log in to the Facebook page) https://www.facebook.com/dialog/oauth?client_id=xxyy&redirect_uri=http://xxyy/home.aspx&scope=publish_stream,read_stream";

  2. Then I seek the AccessToken by passing the code obtained in the above point to the below api as: https://graph.facebook.com/oauth/access_token?client_id=xxy&redirect_uri=http://xxyy/home.aspx&client_secret=xxyy&code=zzz"

  3. Now there is a problem. I am not able to understand which API I need to use to fetch the old status of the logged in user. I guess I have the access token which is the key to fetching the info. But I am not able to find the relevant API.

问题回答

我建议你使用FQL。

//PHP example:
$fql_query_url =  https://graph.facebook.com/ 
.  /fql?q=fql?q=SELECT status_id, message FROM status WHERE uid=me() 
.  &  . $access_token;
$fql_query_result = file_get_contents($fql_query_url);

图表二和“邮政”是你需要的。 我通常不这样做,但我需要我原来的身份!

下面为我打造Face Conversation:

String s = facebook.request("me/inbox");
System.out.println("Message...."+s);




相关问题
Where is the Facebook Status feed URL these days?

I know that it was previously possible to display your most recent Facebook statuses on your website as an RSS feed, but it seems they ve changed their setup and I can t figure out where to find the ...

FileUpload Status Indicator ASP.Net C#

There are other similar posts, but they all want a progress bar. I don t care. I will probably end up buying Ajax Uploader, but I would like to know if there is a way to just let the user know if a ...

Update facebook status with C#

My desktop application should update my facebook status. Is there an API that allows to update the status with a login and pwd ? Thanks in advance for your answer

Status "S" in Subversion

At some point all files in my working copy got marked with "S" symbol as shown below: $ svn st M S AclController.php S InstallationController.php S CustomerController.php S ...

Programmatically change gmail status via OAuth or Authsub

I would like my application to programmatically update my user s gmail/google talk status on their behalf but I dont want to store their password because of the privacy risk Does anyone know if/how ...

热门标签