向Snapchat发送意图?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了向Snapchat发送意图?相关的知识,希望对你有一定的参考价值。
我想打开一个特定的用户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打开特定的用户配置文件。你有个想法吗?
非常感谢你
答案
我不认为这样做是可能的。但也许这会有所帮助。如果您需要更多,可以在底部链接GitHub存储库。
https://www.npmjs.com/package/snapchat
以上是关于向Snapchat发送意图?的主要内容,如果未能解决你的问题,请参考以下文章
如何使用 IntentsTestRule 和 launchFragmentInContainer 测试从片段发送的意图