vonage-php-sdk-core
vonage-php-sdk-core copied to clipboard
Vonage REST API client for PHP. API support for SMS, Voice, Text-to-Speech, Numbers, Verify (2FA) and more.
Is there a method to check a string an calculate whether it is GSM, GSM extended or Unicode compatible and how many message parts it will be? This would help...
Hello, since my last issue with the encoding problem and you told me to add the setType method it worked. But the new line (return) doesn't work anymore
I want to set fallback_url ## Expected Behavior I want to set voice fallback url like set event and answer url from application instance. Example: ``` $application->getVoiceConfig()->setWebhook(\Vonage\Application\VoiceConfig::ANSWER, new \Vonage\Application\Webhook($data['voice_fallback_url_address'], strtoupper($data['voice_fallback_url_method'])));...
Line 51 in src/SMS/Client.php calls PHP sleep function, which expects a timeout in seconds, whereas src/SMS/ExceptionErrorHandler.php throws a ThrottleException object with a timeout in milliseconds. Thus, the script freezes for...
I think we are missing filtering calls by array of status values. Proposed invocation: `$client->voice()->search((new VoiceFilter())->setStatus([VoiceFilter::STATUS_ANSWERED, VoiceFilter::STATUS_BUSY])`
According to the reference docs at: https://developer.nexmo.com/api/sms#delivery-receipt The delivery receipt should feature a client-ref if one was supplied at the time the SMS was sent. There is no getter for...
Certain requests like sending an SMS could be performed either with a signed request or an unsigned ones, and others still can only be performed by an unsigned request. The...
`Vonage\Voice\NCCO\Action\Talk;` missing `voiceName`. It is mentioned in the comments and available in other languages. 
Can not fetch `Number::getWebhook(Number::WEBHOOK_VOICE_STATUS)` Some time ago I've noticed similar issue #271. After solving this issue there is no option to fetch the set value. I've notice that endpoints `GET...
We are getting deprecation messages every time we call verify() ## Expected Behavior When using `verify()->check($verificationCode, $code)`, we should not get deprecation warnings ## Current Behavior When using `verify()->check($verificationCode, $code)`,...