我使用whatsapp api和laravel 5.2
当我尝试发送新消息时,我收到此错误
socket_write(): unable to write to socket [10053]: An established connection was aborted by the software in your host machine.
发送控制器
$massage = "Thanks for subscribe";
Whatsapi::send($massage, function ($send) {
$user = User::Find(1);
$send->to($user->phone);
}
答案 0 :(得分:0)
遵循此tutorial
我在phperror.log
中配置的php.ini
中遇到了相同的错误。最初,我认为这是由于某个firewall
问题引起的,但不是。
问题是,我先运行client
,然后运行server
。 Client
首次运行时可能无法与服务器建立连接。
所以我通过先运行server
然后运行client
来解决它,现在可以成功建立web socket
连接。
编辑:当我们只是重新加载客户端页面而没有正确终止先前的连接时,也会出现此错误。