Documentation ¶
Overview ¶
Package client provides internal utilities for the twilio-go client library.
Package error provides the interface for Twilio specific errors.
Package mock_client is a generated GoMock package.
Package client provides internal utilities for the twilio-go client library.
Package config for config files.
Index ¶
- Constants
- func GetNext(baseUrl string, response interface{}, ...) (interface{}, error)
- func ReadLimits(pageSize *int, limit *int) int
- type BaseClient
- type Client
- type Credentials
- type MockBaseClient
- type MockBaseClientMockRecorder
- type RequestHandler
- func (c *RequestHandler) BuildUrl(rawURL string) (string, error)
- func (c *RequestHandler) Delete(path string, nothing url.Values, headers map[string]interface{}) (*http.Response, error)
- func (c *RequestHandler) Get(path string, queryData url.Values, headers map[string]interface{}) (*http.Response, error)
- func (c *RequestHandler) Post(path string, bodyData url.Values, headers map[string]interface{}) (*http.Response, error)
- type RequestValidator
- type TwilioRestError
Constants ¶
const LibraryVersion = "0.24.0"
LibraryVersion specifies the current version of twilio-go.
Variables ¶
This section is empty.
Functions ¶
func ReadLimits ¶ added in v0.13.0
Takes a limit on the max number of records to read and a max pageSize and calculates the max number of pages to read.
Types ¶
type BaseClient ¶ added in v0.5.0
type Client ¶
type Client struct { *Credentials HTTPClient *http.Client // contains filtered or unexported fields }
Client encapsulates a standard HTTP backend with authorization.
func (*Client) AccountSid ¶ added in v0.8.0
Returns the Account SID.
func (*Client) SendRequest ¶
func (c *Client) SendRequest(method string, rawURL string, data url.Values, headers map[string]interface{}) (*http.Response, error)
SendRequest verifies, constructs, and authorizes an HTTP request.
func (*Client) SetAccountSid ¶ added in v0.9.0
SetAccountSid sets the Client's accountSid field
func (*Client) SetTimeout ¶
SetTimeout sets the Timeout for HTTP requests.
type Credentials ¶
Credentials store user authentication credentials.
func NewCredentials ¶ added in v0.8.0
func NewCredentials(username string, password string) *Credentials
type MockBaseClient ¶ added in v0.14.0
type MockBaseClient struct {
// contains filtered or unexported fields
}
MockBaseClient is a mock of BaseClient interface.
func NewMockBaseClient ¶ added in v0.14.0
func NewMockBaseClient(ctrl *gomock.Controller) *MockBaseClient
NewMockBaseClient creates a new mock instance.
func (*MockBaseClient) AccountSid ¶ added in v0.14.0
func (m *MockBaseClient) AccountSid() string
AccountSid mocks base method.
func (*MockBaseClient) EXPECT ¶ added in v0.14.0
func (m *MockBaseClient) EXPECT() *MockBaseClientMockRecorder
EXPECT returns an object that allows the caller to indicate expected use.
func (*MockBaseClient) SendRequest ¶ added in v0.14.0
func (m *MockBaseClient) SendRequest(method, rawURL string, data url.Values, headers map[string]interface{}) (*http.Response, error)
SendRequest mocks base method.
func (*MockBaseClient) SetTimeout ¶ added in v0.14.0
func (m *MockBaseClient) SetTimeout(timeout time.Duration)
SetTimeout mocks base method.
type MockBaseClientMockRecorder ¶ added in v0.14.0
type MockBaseClientMockRecorder struct {
// contains filtered or unexported fields
}
MockBaseClientMockRecorder is the mock recorder for MockBaseClient.
func (*MockBaseClientMockRecorder) AccountSid ¶ added in v0.14.0
func (mr *MockBaseClientMockRecorder) AccountSid() *gomock.Call
AccountSid indicates an expected call of AccountSid.
func (*MockBaseClientMockRecorder) SendRequest ¶ added in v0.14.0
func (mr *MockBaseClientMockRecorder) SendRequest(method, rawURL, data, headers interface{}) *gomock.Call
SendRequest indicates an expected call of SendRequest.
func (*MockBaseClientMockRecorder) SetTimeout ¶ added in v0.14.0
func (mr *MockBaseClientMockRecorder) SetTimeout(timeout interface{}) *gomock.Call
SetTimeout indicates an expected call of SetTimeout.
type RequestHandler ¶ added in v0.9.0
type RequestHandler struct { Client BaseClient Edge string Region string }
func NewRequestHandler ¶ added in v0.9.0
func NewRequestHandler(client BaseClient) *RequestHandler
func (*RequestHandler) BuildUrl ¶ added in v0.9.0
func (c *RequestHandler) BuildUrl(rawURL string) (string, error)
BuildUrl builds the target host string taking into account region and edge configurations.
type RequestValidator ¶ added in v0.13.0
type RequestValidator struct {
// contains filtered or unexported fields
}
RequestValidator is used to verify the Twilio Signature included with Twilio requests to webhooks. This ensures the request is actually coming from Twilio and helps with securing your webhooks.
func NewRequestValidator ¶ added in v0.13.0
func NewRequestValidator(authToken string) RequestValidator
NewRequestValidator returns a new RequestValidator which uses the specified auth token when verifying Twilio signatures.
func (*RequestValidator) Validate ¶ added in v0.13.0
func (rv *RequestValidator) Validate(url string, params map[string]string, expectedSignature string) bool
Validate can be used for Twilio Signatures sent with webhooks configured for GET calls. It returns true if the computed signature matches the expectedSignature. Params are a map of string to string containing all the query params Twilio added to the configured webhook URL.
func (*RequestValidator) ValidateBody ¶ added in v0.13.0
func (rv *RequestValidator) ValidateBody(url string, body []byte, expectedSignature string) bool
ValidateBody can be used for Twilio Signatures sent with webhooks configured for POST calls. It returns true if the computed signature matches the expectedSignature. Body is the HTTP request body from the webhook call as a slice of bytes.
type TwilioRestError ¶ added in v0.11.0
type TwilioRestError struct { Code int `json:"code"` Details map[string]interface{} `json:"details"` Message string `json:"message"` MoreInfo string `json:"more_info"` Status int `json:"status"` }
TwilioRestError provides information about an unsuccessful request.
func (*TwilioRestError) Error ¶ added in v0.11.0
func (err *TwilioRestError) Error() string