Android application to open an Android application in a specific position

I am working on an application that retrieves messages from a user thread (from a thread table) and displays them. Streams post_id streams are returned in the format: {uid} _ {postid}, for example:

100001147753406_320951738012113

How can I open a facebook application to display such a message?

in a web browser, this can be done using the url: www.facebook.com/uid/posts/postid, and in accordance with the searches this should be done by setting the Intent uri:

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

However, this does not always work with intent.

What is the right way to do this?

+5
source share
1 answer

After a mess with different options, this simple format finally worked for me:

fb://post/{postid}

- {x_id} _ {y_id}, :

fb://post/100001147753406_320951738012113
+1

All Articles