WhatsApp密码没有生成?

时间:2016-07-26 08:37:00

标签: c# asp.net c#-4.0 whatsapp

在尝试生成密码时,我收到以下错误

“无法生成密码”

请找到我的以下代码

if (WhatsAppApi.Register.WhatsRegisterV2.RequestCode(txtPhoneNumber.Text, out password, "sms"))
{
    if (!string.IsNullOrEmpty(password))
        Save();
    else
    {
        grbRequestCode.Enabled = false;
        grbConfirmCode.Enabled = true;
    }
}
else
{
    MessageBox.Show("Could not generate password.", "Message", MessageBoxButtons.OK, MessageBoxIcon.Information);
}

请告诉我为什么会收到此错误。

0 个答案:

没有答案