How to open a specific post in the Facebook android App?

I get the JSON news feed from the Facebook page using this web service:

https://www.facebook.com/feeds/page.php?format=json&id=20531316728

It will send the feed item as follows:

{
    title: " Take a look back on some of your most celebrated moments over the years.",
    id: "b6db41d28d5f1e96990c116d24f45cf1",
    alternate: "http://www.facebook.com/facebook/posts/959895899447",
    categories: [ ],
    published: "2014-02-05T08:00:00+00:00",
    updated: "2014-02-05T08:00:00+00:00",
    author: {
        name: "Facebook"
    },
    verb: "",
    target: "",
    objects: "",
    comments: "",
    likes: "",
    content: "Take a look back on some of your most celebrated moments over the years.<br/><br/><a href="http://www.facebook.com/lookback" id="" title="" target="" onclick="" style=""><img class="img" src="https://fbexternal-a.akamaihd.net/safe_image.php?d=AQBj1UxM999Q3X1f&amp;w=154&amp;h=154&amp;url=fbstaging%3A%2F%2Fgraph.facebook.com%2Fstaging_resources%2FMDExMDE1MjUxMzgxODI3MTcyOToxNjcyNTI2ODcy" alt="" /></a><br/><a href="http://www.facebook.com/lookback" id="" target="_blank" style="">A look back</a><br/>www.facebook.com/lookback<br/> "
},

I want to open this special entry in the Facebook Android application. Somewhere in StackOverflow I saw that this post can be opened using the following format in Android intent:

fb://post/{postid}?owner={uid}

I tried with both fb and facebook in format. But this is not the opening of a specific post in the Android application. Sometimes it directs me to my news feed and sometimes it does not show any message error.

I just want to know if there is a way to open a specific page in the Facebook Android application.

+3
source share

All Articles