我正在考虑创建一个Windows Forms C#应用程序(在Windows 7,Visual Studio 2012,.NET Framework 4.5中),我想使用任何WhatsApp API来发送消息。
我找到了DídacPérezParera的PHP接口WhatsAPI for PHP的.NET分支:https://github.com/perezdidac/WhatsAPINet
我有这个测试代码:
string nickname = "WhatsAPI Test";
// 34 = Country Code
// 6xxyyzzmm = mobile number
string sender = "346xxyyzzmm"; // Mobile number with country code (but without + or 00)
string imei = "MY IMEI ANDROID THAT I GET USING *#06#"; // MAC Address for iOS IMEI for other platform (Android/etc)
var wa = new WhatsApp(sender, imei, nickname, true);
string countrycode = sender.Substring(0, 2);
string phonenumber = sender.Remove(0, 2);
if (!WhatsRegister.ExistsAndDelete(countrycode, phonenumber, imei))
{
PrintToConsole("Wrong Password");
return;
}
我测试,但总是得到“密码错误”
在我的手机中,我安装了Whatsapp。这是Android 4.0。
有关它的任何建议吗?