English 中文(简体)
Get html 状态项目页面链接
原标题:Get html page link for status item

从图表 API, 我有一个状态更新, 带有给定的ID 。

REST 数据的终点是

https://graph.facebook.com/xxxxxxxxxxxx_yyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyy>https://graph.facebook.com/xxxx_yyyyyyyyyyyyyyyyyyyyyyyyyy>/a>

xxXXXXXX_yyyyyyyyyyyyyyyyyyyyyyyyyy 替换为状态更新的标识。

这给了我一个不错的JSON包 描述状况。

现在,如果我想提供一个链接 供人类观看最新状况呢?

状态更新的常规 html 页面是什么?

这不管用:

http://www.facebook.com/xxxxxxxxxxxxxxxxxx_yyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyy>http://www.facebook.com/xxxx_yyyyyyyyyyyyyyyyyyyyyyyy


<强 > ANSWER

感谢Jashwant的

这是您想要的格式 :

http://www.facebook.com/xxxxxxxxxx/posts/yyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyy>http://www.facebook.com/xxx/poss/yyyyyyyyyyy

...XXXXXX 由作者代号取代,而 yyyyyyyyyyyyyyyyyyyy 则表示该日志代号。

这里的代码是我使用的。在这个代码中, item.id 持有 >xxxxxxxxxxxxxxxxx_yyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyy

var permalink =  http://www.facebook.com/  +
        item.id.replace( _ ,  /posts/ );
最佳回答

如果您有故事(_id) (或后页_id) 并且想要跳过查询facebook api 的间接费用, 您可以用 来分割故事_ id 。

第一部分是用户的代号,第二部分是该员额的代号。

在喷射器中,

var story_id = "1137725463_413359962029143";
var story_id_split = story_id.split( _ );
var user_id = story_id_split[0];
var post_id = story_id_split[1];

var permanent_link = "http://www.facebook.com/" + user_id + "/posts/" + post_id;
console.log(permanent_link);
问题回答




相关问题
Facebook Connect login dialog not working

I am using Facebook Connect for iPhone and following the official instructions. I use the following code to display the login dialog: FBLoginDialog* dialog = [[[FBLoginDialog alloc] initWithSession:...

Facebook App Profile Tab is Empty ... No Content Displayed?

I can view my application via the http://apps.facebook.com/myapplication/ link and the content shows up correctly. I also added the application as a tab to a facebook page. However, when viewing the ...

Facebook Platform error: "Object cannot be liked"

I m working on a Facebook Application that generates wall posts. In testing these posts, I ve discovered that the Facebook Platform action of "liking" a post is failing. The specific error message ...

how to call showPermissionsDialog() in php (facebook api)?

I was reading over the documentation yet I could not figure out how to call Facebook.showPermissionsDialog() in php include_once ./facebook-platform/php/facebook.php ; $facebook = new Facebook(my ...

Facebook connect

If I plug in the facebook connect into my website, How can I prevent double signups? Lets say I have a user that s already signed up to my site but he clicked the connect with facebook, is there a ...

热门标签