如何从我的Android应用程序链接到Instagram应用程序中的页面? 例如对于facebook我使用下面的代码:
public static Intent getOpenFacebookIntent(Context context) {
try {
context.getPackageManager().getPackageInfo("com.facebook.katana", 0);
return new Intent(Intent.ACTION_VIEW, Uri.parse("fb://page/5676133521"));
} catch (Exception e) {
return new Intent(Intent.ACTION_VIEW, Uri.parse("https://touch.facebook.com/androiddevs"));
}
}
}