php-rest-api icon indicating copy to clipboard operation
php-rest-api copied to clipboard

This repository contains the open source PHP client for MessageBird's REST API.

Results 24 php-rest-api issues
Sort by recently updated
recently updated
newest added

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...

question

As title, it only as 'to' field, is there any reason for this?

question

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 =...

bug

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...

feature

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) {...

bug

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: ![image001](https://github.com/messagebird/php-rest-api/assets/13901904/c4722a83-e367-49da-beb5-90a1f363220a) $parts = explode("\r\n\r\n", $response, 3); $isThreePartResponse = (strpos($parts[0], "\n") === false && strpos($parts[0], 'HTTP/1.') === 0); $parts[0] contains...