gotwilio icon indicating copy to clipboard operation
gotwilio copied to clipboard

Twilio library for Go (golang).

Results 16 gotwilio issues
Sort by recently updated
recently updated
newest added

Twilio returns `usage` as a string, which can be parsed to an integer or decimal type depending on the `usage_unit`. Using Twilio's Python client to fetch usage records, it was...

Hello, I'd like to use [gomock](https://github.com/golang/mock) to mock the Twilio requests and responses in tests. This requires an interface corresponding to `type Twilio struct` and all its methods `func (twilio...

I have added a url in the SMS body that includes a query parameter (?type=ab_cam). When the sms is sent on iPhone6, then the query parameter is sent as ?type=ab...

I've looked in the code, but I have not found anything useful to send TWiML messages https://www.twilio.com/docs/sms/twiml/message . Just asking before I create a PR to add the functionality.

I see `GetSMS` as an option, but it requires I know about the SMS. Is there an option to get all existing SMS messages like: `curl -X GET 'https://api.twilio.com/2010-04-01/Accounts/{accountID}/Messages.json?PageSize=20&From="+{phone}"' \...

According to this code, only POST requests are supported. However, Twilio accesses fax media files using a GET request. As far as I can see and have roughly tested, simply...

Wanted to start a discussion about the possible integration of OpenTracing and `context.Context` propagation in the `gotwilio` project. OpenTracing is an API specification/collection of libraries which allow for distributed tracing...

In order for others to implement other grant types (voice), the grantName method should be exported. thanks,

Would love to have Twilio verifiy api implemented in the package (if not already)

According to the docs at https://www.twilio.com/docs/sms/send-messages#conditional-parameters, only one of `From` or `MessagingServiceSid` is required. Currently there is no way to specify a `MessagingServiceSid` instead of `From` when calling `twilio.SendSMS()` in...