0
我從NuGet包管理器安裝WhatsappAPI並試圖執行代碼,但無法通過WART(WhatsApp Registration Tool)
。其給錯誤LIKE {Status:"Failed",Reason:"Bad_Request"}
所有的時間註冊我的手機號碼。 我已經搜索了很多。但是這個問題沒有任何解決方案。 只有工具,即WART進行註冊。 是否有any new updates
或WART is still working
.. ??發送WhatsApp的使用WhatsappAPI消息在C#
我的代碼如下。
public JsonResult SendMessage(string sendTo,string message)
{
var response = false;
string from = "91XXXXXXXXXX"; //(Enter Your Mobile Number)
String password;
var res = WhatsAppApi.Register.WhatsRegisterV2.RequestCode(from, out password);
WhatsApp wa = new WhatsApp(from, password, "abc.com", false, false);
wa.OnConnectSuccess +=() =>
{
wa.OnLoginSuccess += (phonenumber, data) =>
{
wa.SendMessage(sendTo, message);
response = true;
};
wa.OnLoginFailed += (data) =>
{
response = false;
};
wa.Login();
};
wa.OnConnectFailed += (Exception) =>
{
response = false;
};
return Json(response);
}
在上面的代碼m不能通過WART工具生成密碼或不通過使用API CodeRequest方法。
讓我知道是否有更新。