android - Open Facebook user profile -
is there way open facebook user profile facebook app app?
i link graph api: https://www.facebook.com/app_scoped_user_id/1234567/ link user profile , open profile using facebook app.
if create intent action_view , url opens facebook in browser.
thanks!
i saw other options outdated. i'm using v2.4 graph api.
i used code , worked. based on post suggested @kristo1990.
string uri = "fb://profile/12345678"; intent intent = new intent(intent.action_view, uri.parse(uri)); startactivity(intent);
Comments
Post a Comment