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:
However, this does not always work with intent.
What is the right way to do this?
source
share