向Snapchat发送意图?

问题描述 投票:0回答:1

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

  • Snapchat App(如果在移动设备上可用)
  • 黄金,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打开特定的用户配置文件。你有个想法吗?

非常感谢你

android android-intent snapchat
1个回答
0
投票

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

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

© www.soinside.com 2019 - 2024. All rights reserved.