天天看點

APP點選跳轉到facebook首頁個人首頁與公共首頁實作問題

個人首頁與公共首頁

個人首頁與公共首頁的差別還是很大,而且公共首頁是需要使用者自己開通的。詳細資訊可以打開這個連結,裡面也有具體的建立方法。

實作

try {
     mContext.getPackageManager().getPackageInfo("com.facebook.katana", 0);
     startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse("fb://page/id_here")));
} catch (Exception e) {
     startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse("https://www.facebook.com/user_name_here/")));
}
           

id_here:頁面ID。通過這個連結擷取

user_name_here:首頁位址,也就是公共中心位址https://www.facebook.com/後面拼接的

問題

其他一些錯誤或者異常可參考此連結

繼續閱讀