php - socket_write(): unable to write to socket [10053] -
i'm using whatsapp api laravel 5.2
and got error when trying send new message
socket_write(): unable write socket [10053]: established connection aborted software in host machine.
send controller
$massage = "thanks subscribe"; whatsapi::send($massage, function ($send) { $user = user::find(1); $send->to($user->phone); }
Comments
Post a Comment