使用Skype URI通过Android Intent发送Skype消息

时间:2018-02-13 15:31:39

标签: android skype

我想从我的应用发送Skype短信。我找到了关于Skype Uri的文档,以及关于how to use it on Android的文档。

根据他们的例子,我们可以做到:

Uri skypeUri = Uri.parse("skype:desired_skype_username?chat&topic=mytopic");
Intent myIntent = new Intent(Intent.ACTION_VIEW, skypeUri);
myIntent.setComponent(new ComponentName("com.skype.raider", "com.skype.raider.Main"));
myIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
startActivity(myIntent);

此代码仅在聊天页面中使用 desired_skype_username 打开Skype。有没有办法在没有用户交互的情况下发送txt消息?

1 个答案:

答案 0 :(得分:-1)

这里有 share-ulrs 的热门信使:

tg://msg?text=text

whatsapp://send?text=text

viber://forward?text=text

看起来 Skype 可能有类似的东西,但是......它没有:-(