Intent to open a chat with a specific user on snapchat app

血红的双手。 提交于 2019-12-01 14:42:07

问题


I'm trying to find if there is any app schema,

to open the Snapchat app (via Intent) with a specific userID that I want to chat with?

BTW, to find the userID:


回答1:


This the only thing that works for me. Unfortunately, it adds the extra step of making the user choose the browser or Snapchat app.

Intent nativeAppIntent = new Intent(Intent.ACTION_VIEW, Uri.parse("https://snapchat.com/add/" + snapchatId));
startActivity(nativeAppIntent);

Oddly enough, the URL scheme snapchat://add/" + snapchatId works on iOS but not on Android (it opens the Android app, but does not pop up the user).

EDIT: Add intent.setPackage("com.snapchat.android"); and it will open the app without the chooser. But adding this means you will need to surround everything with a try/catch to prevent a crash.

try {
    Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse("https://snapchat.com/add/" + snapchatId));
    intent.setPackage("com.snapchat.android");
    startActivity(intent);
} catch (Exception e) {
    startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse("https://snapchat.com/add/" + snapchatId)));
}


来源:https://stackoverflow.com/questions/31436060/intent-to-open-a-chat-with-a-specific-user-on-snapchat-app

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!