gpt4 book ai didi

java - 如何在用户时间线上打开 Facebook 应用程序?

转载 作者:行者123 更新时间:2023-11-30 01:36:11 28 4
gpt4 key购买 nike

我正在尝试从我的应用程序打开一个 Facebook 应用程序,但我需要它才能转到特定用户的时间线。我可以在手机浏览器中打开它,它工作正常,但我无法在 facebook 应用程序中打开它...我知道 facebook 改变了它以前的方式,我正在使用 facebook-android-sdk:4.6。 0 这是我的代码:

public Intent getOpenFacebookIntent(String userId) {
Log.e(TAG, "pid "+ userId);
try {
getPackageManager().getPackageInfo("com.facebook.katana", 0);
return new Intent(Intent.ACTION_VIEW, Uri.parse("fb://profile/" + userId));

} catch (Exception e) {
return new Intent(Intent.ACTION_VIEW, Uri.parse("https://www.facebook.com/" + userId));

}
}

谢谢!

最佳答案

稍微改变一下

"https://www.facebook.com/profile.php?id=" + userId

试试这个。

此外,仅供引用:https://www.facebook.com/"+ userId 仅在您传递用户名而不是 userId 时有效。

关于java - 如何在用户时间线上打开 Facebook 应用程序?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35082852/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com