Send message to specific contact through whatsapp from another app

前端 未结 6 2334
无人共我
无人共我 2021-02-20 07:58

Is it possible to send message to a specific contact through whatsapp directly from another app? I know the contact ID. I don\'t want to open whatsapp

6条回答
  •  忘掉有多难
    2021-02-20 09:02

    This will be work but you need to mobile no. with country code like for India 91. eg. 91758XXXXXX2

    String url = "https://api.whatsapp.com/send?phone=" + 91758XXXXXX2 + "&text=" + URLEncoder.encode("good morning", "UTF-8");
        i.setPackage("com.whatsapp");
        i.setData(Uri.parse(url));
        if (i.resolveActivity(packageManager) != null) {
          startActivity(i);
        }
    

提交回复
热议问题