0

我的数据库中有超过 1000 个号码。如果用户使用 whatsapp,我需要向该号码发送生日快乐消息。这可能吗?我不介意我是否需要付款或什么……有可能吗?

4

2 回答 2

1

[已弃用] 最好的方法是使用:https ://github.com/rquiroz/WhatsAPINet

那是示例代码

   WhatsApp wa = new WhatsApp("your number", "your password", "pankaj", false, false);
wa.OnConnectSuccess += () =>
{
    Response.Write("connect");
    wa.OnLoginSuccess += (phno,data) =>
    {
        wa.SendMessage("to", "msg");
    };

    wa.OnLoginFailed += (data) =>
    {
        Response.Write("login failed"+data);
    };
    wa.Login();
};
wa.OnConnectFailed+= (ex)=>
{
    Response.Write("connection failed");
}
于 2015-10-04T17:32:02.320 回答
0

你需要一个应该做的移动应用程序吗?如果是这样,我认为市场上没有类似的应用程序。到目前为止,Whatsapp 还没有公开他们的任何 api 供开发人员利用其功能。

于 2015-10-03T07:01:55.513 回答