我想在不使用 WhatApp API 的情况下在 WhatsApp 上向特定号码发送消息。 我正在使用“Android Intent”包。我成功地能够通过特定号码发送消息,但我想附加一条短信。我几乎尝试了所有方法,但无法发送带有号码的文本。
我的代码:
void normalWhatsApp() {
final AndroidIntent intent = AndroidIntent(
action: 'android.content.Intent.ACTION_SEND',
package: 'com.whatsapp',
type: 'text/plain',
componentName: 'com.whatsapp.Conversation',
arguments: {
"jid": "${_number.text}@s.whatsapp.net",
"android.content.Intent.EXTRA_TEXT": 'Hi Ottoman'
},
);
try {
intent.launch().catchError((error) {
print('Error: $error');
});
} catch (e) {
print('WhatsApp Not Installed');
}
}