0

我正在尝试在 facebook 上打开我的应用页面,以便用户喜欢它

我遵循了这个解决方案,但似乎无法找到通过facebook的方案机制访问页面的方法,使用解决方案代码,我的页面ID在facebook的android应用程序中打开我的页面,但是缺少like按钮,并且订阅页面失败。

4

1 回答 1

1

找到了答案:

    public static Intent getOpenFacebookIntent(Context context) {

       try {
        //context.getPackageManager().getPackageInfo("com.facebook.katana", 0);
        return new Intent(Intent.ACTION_VIEW, Uri.parse("fb://page/576525422362966"));
       } catch (Exception e) {
        return new Intent(Intent.ACTION_VIEW, Uri.parse("https://www.facebook.com/576525422362966"));
       }
    }
于 2013-05-09T18:47:52.220 回答