向Snapchat发送意图?

时间:2017-12-17 10:58:29

标签: android android-intent snapchat

我想打开一个特定的用户ID:

  • Snapchat应用程序(如果在移动设备上可用)
  • 或Snapchat网站

我开发了这种静态方法:

    public static Intent newSnapchatIntent(String id) {
        if (isApplicationEnabled(Defines.SNAPCHAT_PACKAGE_NAME)) {
            Intent intent = new Intent(Intent.ACTION_SEND);
            intent.setType("*/*");
            intent.setPackage("com.snapchat.android");
            return intent;
        }
        return new Intent(Intent.ACTION_VIEW, Uri.parse(NetworkUtils.formatUrlPath("https://snapchat.com", id)));
    }

但我不知道如何根据此#id打开特定的用户个人资料。你有个主意吗?

非常感谢

1 个答案:

答案 0 :(得分:0)

我认为不可能这样做。但也许这会有所帮助。如果您需要更多,可以在底部链接GitHub存储库。

https://www.npmjs.com/package/snapchat