Open Facebook page from Android app?

前端 未结 26 3459
被撕碎了的回忆
被撕碎了的回忆 2020-11-22 07:03

from my Android app, I would like to open a link to a Facebook profile in the official Facebook app (if the app is installed, of course). For iPhone, there exists the

26条回答
  •  遥遥无期
    2020-11-22 07:44

    Best answer I have found, it's working great.

    Just go to your page on Facebook in the browser, right click, and click on "View source code", then find the page_id attribute: you have to use page_id here in this line after the last back-slash:

    fb://page/pageID
    

    For example:

    Intent facebookAppIntent;
    try {
        facebookAppIntent = new Intent(Intent.ACTION_VIEW, Uri.parse("fb://page/1883727135173361"));
        startActivity(facebookAppIntent);
    } catch (ActivityNotFoundException e) {
        facebookAppIntent = new Intent(Intent.ACTION_VIEW, Uri.parse("http://facebook.com/CryOut-RadioTv-1883727135173361"));
        startActivity(facebookAppIntent);
    }
    

提交回复
热议问题