netflie / whatsapp-cloud-api

The first PHP API to send and receive messages using a cloud-hosted version of the WhatsApp Business Platform
https://netflie.es/portfolio/whatsapp-business-cloud-api-php-sdk/
MIT License
428 stars 151 forks source link

Button Reply is not working #168

Closed HemadriChavada closed 4 months ago

HemadriChavada commented 5 months ago

I have tried the new button feature and getting the below error :

Class "Netflie\WhatsAppCloudApi\Message\ButtonReply\Button" not found

Please refer code (Same as provided by you) $rows = [ new Button('button-1', 'Yes'), new Button('button-2', 'No'), new Button('button-3', 'Not Now'), ]; $action = new ButtonAction($rows);

$whatsapp_cloud_api->sendButton( '', 'Would you like to rate us on Trustpilot?', $action, 'RATE US', // Optional: Specify a header (type "text") 'Please choose an option' // Optional: Specify a footer );

HemadriChavada commented 4 months ago

Fixed