1

I noticed that with a URL of the format

facebook.com/username/timeline/2013/4

we move to the end of the specified month of the year.

Now I need to use an url to navigate a user in my timeline to a specific post (facebookID) in a way that he can still move up and down on timeline from this point of time (anchor).

Any clues?

4

1 回答 1

0

在 Facebook 页面上,每个帖子的 HTML 元素都有自己独特的 HTML id。您可以利用这一事实直接链接到 Facebook 页面内的帖子,方法是识别帖子id并将其用作 URL 中的片段标识符

要查找帖子的 HTML 元素id,请在浏览器中右键单击特定帖子 [我假设是 Chrome],然后单击“检查元素”。在打开的开发环境中,找到div包含idHTML 属性的被检查元素的包围。

例如,迪士尼 2013 年 3 月 Facebook 时间线上特定帖子的链接如下:

https://www.facebook.com/Disney/timeline/2013/02/#tl_unit_6154529015953642023

于 2013-05-13T21:40:57.060 回答