We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello,
I'm trying to use the example, the $bot -> send method does not work, I did not get any error message, here is my code :
$bot = new FbBotApp($token); $bot->send(new Message( $recipent_id , 'This is a simple text message.'));
I tried to debug the code, the script receives the message, but it does not send the message.
Thank you in advance
The text was updated successfully, but these errors were encountered:
I Found the error,
"The problem is that cURL has not been configured to trust the server’s HTTPS certificate."
You must add at :
// FbBotApp.php // line 549 // curl_setopt($process, CURLOPT_SSL_VERIFYPEER, false);
Sorry, something went wrong.
No branches or pull requests
Hello,
I'm trying to use the example,
the $bot -> send method does not work, I did not get any error message, here is my code :
$bot = new FbBotApp($token); $bot->send(new Message( $recipent_id , 'This is a simple text message.'));
I tried to debug the code, the script receives the message, but it does not send the message.
Thank you in advance
The text was updated successfully, but these errors were encountered: