php-rest-api
php-rest-api copied to clipboard
This repository contains the open source PHP client for MessageBird's REST API.
Hello. We've tried using the SDK to send a WhatsApp HSL message. To do this we've used the `create-hsm` example from the example folder. However, it will throw an exception...
As title, it only as 'to' field, is there any reason for this?
I don't get an id in the response, it also does not return the value I set for reportUrl ``` $Message = new \MessageBird\Objects\Message(); $Message->scheduledDatetime = date('Y-m-d\TH:i:sP', $sms['sms_send_time']); $Message->originator =...
I've been having problems sending SMS messages because of connection timeouts. It doesn't happen every time, it's just "random" (my guess just because of the network connection quality "randomness"). Looks...
When I retieve the list of messages I don't see the `["id":protected]` and the `["href":protected]` information in the response like it's shown in the documentation (https://developers.messagebird.com/api/sms-messaging/#list-messages): ``` object(MessageBirdObjectsBaseList)#128 (6) {...
Previously, leeway was hardcoded to 1 second. This PR adds ability to change this value. Originally implemented in https://github.com/abandon-the-jazz/messagebird-php-rest-api/pull/1
- Passing null when the header is missing causes a TypeError, as the signature must be a string. - `$_SERVER` params were being accessed using undefined constants auto-converted to strings....
Add support for `shortenUrls` URL parameter when sending out a message.
Hi, I have an issue with a proxy containing multiple lines:  $parts = explode("\r\n\r\n", $response, 3); $isThreePartResponse = (strpos($parts[0], "\n") === false && strpos($parts[0], 'HTTP/1.') === 0); $parts[0] contains...