gpt4 book ai didi

android - 自动发送 whatsapp 消息

转载 作者:塔克拉玛干 更新时间:2023-11-02 21:38:09 26 4
gpt4 key购买 nike

如何自动向特定联系人发送whatsapp消息?我已经搜索过但它只是打开该特定人的聊天但不会自动发送消息

这里是我使用的代码:

private void openWhatsappContact(String number) {
Uri uri = Uri.parse("smsto:" + number);
Intent i = new Intent(Intent.ACTION_SENDTO, uri);
i.setPackage("com.whatsapp");
startActivity(Intent.createChooser(i, ""));

最佳答案

我不确定您是否可以自动发送消息,但请尝试指定您要发送的消息:

i.putExtra(Intent.EXTRA_TEXT, "This is my text to send.");

引用: https://www.whatsapp.com/faq/en/android/28000012

关于android - 自动发送 whatsapp 消息,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28018433/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com