7

我使用此代码

#!/usr/bin/php
<?php
require_once('whatsapp_whatsapi_config.php');

$destinationPhone = 'xxxx';

$w = new WhatsProt($userPhone,0, $userName, $debug);
$w->Connect();
$w->LoginWithPassword($password);
$message = 'WhatsApp';
$w->Message($destinationPhone, $message);
echo "Mensaje enviado exitosamente";
?>

并显示此错误

  PHP Fatal error:  Uncaught exception 'LoginFailureException' in       /var/www/html/whats/src/whatsprot.class.php:2274
Stack trace:
/var/www/html/whats/src/whatsprot.class.php(552): WhatsProt->doLogin()
/var/www/html/whats/whatsapp_whatsapi_send.php(13): WhatsProt->loginWithPassword('Mu7q0hq/vRSLFCU...')
{main}
  thrown in /var/www/html/whats/src/whatsprot.class.php on line 2274

我尝试使用 WART 应用程序,但生成的密码不正确

4

1 回答 1

1

在有异常的行上添加一个 try-catch 子句,$w->LoginWithPassword($password);并在异常上使用 getMessage() 方法来查看错误消息是什么,以及您的登录可能有什么问题

于 2015-09-23T07:03:52.077 回答