twilio
packagemoduleThis package is not in the latest version of its module.
Details
Validgo.mod file
The Go module system was introduced in Go 1.11 and is the official dependency management solution for Go.
Redistributable license
Redistributable licenses place minimal restrictions on how software can be used, modified, and redistributed.
Tagged version
Modules with tagged versions give importers more predictable builds.
Stable version
When a project reaches major version v1 it is considered stable.
- Learn more about best practices
Repository
Links
README¶
twilio-go
All the codehere was generated bytwilio-oai-generator byleveragingopenapi-generatorandtwilio-oai. If you find an issue with the generation or the OpenAPI specs,please go ahead and open an issue or a PR against the relevant repositories.
🚀 Feature Update
Twilio Go Helper Library's version 1.20.0 adds support for the application/json content type in the request body. See examplehere.Behind the scenes Go Helper is now auto-generated via OpenAPI with this release.This enables us to rapidly add new features and enhance consistency across versions and languages.
Documentation
The documentation for the Twilio API can be foundhere.
The Go library documentation can be foundhere.
Supported Go Versions
This library supports the following Go implementations:
- Go 1.18
- Go 1.19
- Go 1.20
- Go 1.21
- Go 1.22
- Go 1.23
- Go 1.24
Installation
The recommended way to installtwilio-go
is by usingGo modules.
If you already have an initialized project, you can run the command below from your terminal in the project directory to install the library:
go get github.com/twilio/twilio-go
If you are starting from scratch in a new directory, you will first need to create a go.mod file for tracking dependencies such as twilio-go. This is similar to using package.json in a Node.js project or requirements.txt in a Python project.You can read more about mod files in the Go documentation. To create the file, run the following command in your terminal:
go mod init twilio-example
Once the module is initialized, you may run the installation command from above, which will update your go.mod file to include twilio-go.
Test your installation
Try sending yourself an SMS message by pasting the following code example into a sendsms.go file in the same directory where you installed twilio-go. Be sure to update the accountSid, authToken, and from phone number with values from your Twilio account. The to phone number can be your own mobile phone number.
package mainimport ("encoding/json""fmt""github.com/twilio/twilio-go"twilioApi "github.com/twilio/twilio-go/rest/api/v2010")func main() {accountSid := "ACXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"authToken := "f2xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"client := twilio.NewRestClientWithParams(twilio.ClientParams{Username: accountSid,Password: authToken,})params := &twilioApi.CreateMessageParams{}params.SetTo("+15558675309")params.SetFrom("+15017250604")params.SetBody("Hello from Go!")resp, err := client.Api.CreateMessage(params)if err != nil {fmt.Println("Error sending SMS message: " + err.Error())} else {response, _ := json.Marshal(*resp)fmt.Println("Response: " + string(response))}}
Savesendsms.go
. In your terminal from the same directory, run:
go run sendsms.go
After a brief delay, you will receive the text message on your phone.
WarningIt's okay to hardcode your credentials when testing locally, but you should use environment variables to keep them secret before committing any code or deploying to production. Check outHow to Set Environment Variables for more information.
Use the helper library
API credentials
The TwilioRestClient
needs your Twilio credentials. We recommend storing them as environment variables, so that you don't have to worry about committing and accidentally posting them somewhere public. Seehttp://twil.io/secure for more details on how to store environment variables.
package mainimport "github.com/twilio/twilio-go"func main() {// This will look for `TWILIO_ACCOUNT_SID` and `TWILIO_AUTH_TOKEN` variables inside the current environment to initialize the constructor// You can find your Account SID and Auth Token at twilio.com/console// `TWILIO_ACCOUNT_SID` should be in format "ACXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"client := twilio.NewRestClient()}
If you don't want to use environment variables, you can also pass the credentials directly to the constructor as below.
package mainimport "github.com/twilio/twilio-go"func main() {accountSid := "ACXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"authToken := "YYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYY"client := twilio.NewRestClientWithParams(twilio.ClientParams{Username: accountSid,Password: authToken,})}
Use a Subaccount
Subaccounts in Twilio are just accounts that are "owned" by your account. Twilio users can create subaccounts to help separate Twilio account usage into different buckets.
If you wish to make API calls with a Subaccount, you can do so by setting theAccountSid
field in thetwilio.ClientParams
:
package mainimport "github.com/twilio/twilio-go"func main() {// subaccountSid should also be in format "ACXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"subaccountSid := os.Getenv("TWILIO_SUBACCOUNT_SID")client := twilio.NewRestClientWithParams(twilio.ClientParams{AccountSid: subaccountSid,})}
Use API Keys
Lastly, if you want to follow best practices and initialize your client using anAPI Key and Secret, instead of potentially exposing your account's AuthToken, use the following pattern:
package mainimport ("os""github.com/twilio/twilio-go")func main() {accountSid := os.Getenv("TWILIO_ACCOUNT_SID")apiKey := os.Getenv("TWILIO_API_KEY")apiSecret := os.Getenv("TWILIO_API_SECRET")client := twilio.NewRestClientWithParams(twilio.ClientParams{Username: apiKey,Password: apiSecret,AccountSid: accountSid,})}
Specify a Region and/or Edge
package mainimport ("github.com/twilio/twilio-go")func main() {client := twilio.NewRestClient()client.SetRegion("au1")client.SetEdge("sydney")}
This will result in thehostname
transforming fromapi.twilio.com
toapi.sydney.au1.twilio.com
.
A Twilio client constructed without these parameters will also look forTWILIO_REGION
andTWILIO_EDGE
variables inside the current environment.
Buy a phone number
package mainimport ("fmt""github.com/twilio/twilio-go"twilioApi "github.com/twilio/twilio-go/rest/api/v2010")func main() {phoneNumber := "AVAILABLE_TWILIO_PHONE_NUMBER"client := twilio.NewRestClient()params := &twilioApi.CreateIncomingPhoneNumberParams{}params.SetPhoneNumber(phoneNumber)resp, err := client.Api.CreateIncomingPhoneNumber(params)if err != nil {fmt.Println(err.Error())} else {fmt.Println("Phone Number Status: " + *resp.Status)}}
Make a call
package mainimport ("fmt""github.com/twilio/twilio-go"twilioApi "github.com/twilio/twilio-go/rest/api/v2010""os")func main() {from := os.Getenv("TWILIO_FROM_PHONE_NUMBER")to := os.Getenv("TWILIO_TO_PHONE_NUMBER")client := twilio.NewRestClient()params := &twilioApi.CreateCallParams{}params.SetTo(to)params.SetFrom(from)params.SetUrl("http://twimlets.com/holdmusic?Bucket=com.twilio.music.ambient")resp, err := client.Api.CreateCall(params)if err != nil {fmt.Println(err.Error())} else {fmt.Println("Call Status: " + *resp.Status)fmt.Println("Call Sid: " + *resp.Sid)fmt.Println("Call Direction: " + *resp.Direction)}}
Get data about an existing Call
package mainimport ("fmt""os""github.com/twilio/twilio-go"twilioApi "github.com/twilio/twilio-go/rest/api/v2010")func main() {accountSid := os.Getenv("TWILIO_ACCOUNT_SID")apiKey := os.Getenv("TWILIO_API_KEY")apiSecret := os.Getenv("TWILIO_API_SECRET")client := twilio.NewRestClientWithParams(twilio.ClientParams{Username: apiKey,Password: apiSecret,AccountSid: accountSid,})params := &twilioApi.FetchCallParams{}resp, err := client.Api.FetchCall("CA42ed11f93dc08b952027ffbc406d0868", params)if err != nil {fmt.Println(err.Error())} else {fmt.Println("Call Status: " + *resp.Status)fmt.Println("Call Sid: " + *resp.Sid)fmt.Println("Call Direction: " + *resp.Direction)}}
Send Bulk Message
Try sending a message to multiple recipients with JSON request body support.
package mainimport ("encoding/json""fmt""github.com/twilio/twilio-go"previewMessaging "github.com/twilio/twilio-go/rest/preview_messaging/v1")func main() {accountSid := "ACXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"authToken := "f2xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"client := twilio.NewRestClientWithParams(twilio.ClientParams{Username: accountSid,Password: authToken,})// create multiple recipientsmsg1 := previewMessaging.MessagingV1Message{To: "+XXXXXXXXXX"}msg2 := previewMessaging.MessagingV1Message{To: "+XXXXXXXXXX"}// create message request objectreq := &previewMessaging.CreateMessagesRequest{Messages: []previewMessaging.MessagingV1Message{msg1, msg2}, Body: "Hello from Go!", From: "+XXXXXXXXXX"}params := &previewMessaging.CreateMessagesParams{CreateMessagesRequest: req}resp, err := client.PreviewMessagingV1.CreateMessages(params)if err != nil {fmt.Println("Error sending SMS message: " + err.Error())} else {response, _ := json.Marshal(*resp)fmt.Println("Response: " + string(response))}}
Iterate through records
This library also offers paging functionality. Collections such as calls and messages haveListXxx
andStreamXxx
functions that page under the hood. With both list and stream, you can specify the number of records you want toreceive (limit) and the maximum size you want each page fetch to be (pageSize). The library will then handle the taskfor you.
List
eagerly fetches all records and returns them as a list, whereasStream
streams the records and lazily retrievesthe pages as you iterate over the collection. Also,List
returns no records if any errors are encountered while paging,whereasStream
returns all records up until encountering an error. You can also page manually using thePageXxx
function in each of the apis.
UseListXxx
orStreamXxx
package mainimport ("fmt""github.com/twilio/twilio-go"twilioApi "github.com/twilio/twilio-go/rest/api/v2010""os")func main() {from := os.Getenv("TWILIO_FROM_PHONE_NUMBER")client := twilio.NewRestClient()params := &twilioApi.ListMessageParams{}params.SetFrom(from)params.SetPageSize(20)params.SetLimit(100)resp, _ := client.Api.ListMessage(params)for record := range resp {fmt.Println("Body: ", *resp[record].Body)}channel, _ := client.Api.StreamMessage(params)for record := range channel {fmt.Println("Body: ", *record.Body)}}
UsePageXxx
package mainimport ("fmt""github.com/twilio/twilio-go"twilioApi "github.com/twilio/twilio-go/rest/api/v2010""net/url""os")func main() {from := os.Getenv("TWILIO_FROM_PHONE_NUMBER")client := twilio.NewRestClient()params := &twilioApi.ListMessageParams{}params.SetFrom(from)params.SetPageSize(20)var pageToken stringvar pageNumber stringresp, err = client.Api.PageMessage(params, "", "")if err != nil {fmt.Println(err)} else {fmt.Println(resp.NextPageUri)u, _ := url.Parse(resp.NextPageUri)q := u.Query()pageToken = q.Get("PageToken")pageNumber = q.Get("Page")}resp, err := client.Api.PageMessage(params, pageToken, pageNumber)if err != nil {fmt.Println(err)} else {if resp != nil {fmt.Println(*resp.Messages[0].Body)}}}
Handle Exceptions
If the Twilio API returns a 400 or a 500 level HTTP response, the twilio-go library will include information in the returned err value. 400-level errors arenormal during API operation ("Invalid number", "Cannot deliver SMS to that number", for example) and should be handled appropriately.
package mainimport ("fmt""os""github.com/twilio/twilio-go"twilioclient "github.com/twilio/twilio-go/client"twilioApi "github.com/twilio/twilio-go/rest/api/v2010")func main() {phoneNumber := os.Getenv("TWILIO_PHONE_NUMBER")client := twilio.NewRestClient()params := &twilioApi.CreateIncomingPhoneNumberParams{}params.SetPhoneNumber(phoneNumber)resp, err := client.Api.CreateIncomingPhoneNumber(params)if err != nil {twilioError := err.(*twilioclient.TwilioRestError)fmt.Println(twilioError.Error())}}
Generate TwiML
To control phone calls, your application needs to outputTwiML.
Use thetwiml
package to easily create such responses.
package mainimport ("fmt""github.com/twilio/twilio-go/twiml")func main() {//Construct Verbsdial := &twiml.VoiceDial{}say := &twiml.VoiceSay{Message: "Welcome to Twilio!",Voice: "woman",Language: "en-gb",OptionalAttributes: map[string]string{"input": "test"},}pause := &twiml.VoicePause{Length: "10",}//Construct Nounqueue := &twiml.VoiceQueue{Url: "www.twilio.com",}//Adding Queue to Dialdial.InnerElements = []twiml.Element{queue}//Adding all Verbs to twiml.VoiceverbList := []twiml.Element{dial, say, pause}twimlResult, err := twiml.Voice(verbList)if err == nil {fmt.Println(twimlResult)} else {fmt.Println(err)}}
This will print the following:
<?xml version="1.0" encoding="UTF-8"?><Response> <Dial> <Queue url="www.twilio.com"/> </Dial> <Say voice="woman" language="en-gb" input="test">Welcome to Twilio!</Say> <Pause length="10"/></Response>
Advanced Usage
Use the request validator
Validate that GET/POST Requests are coming from Twilio:
package mainimport ("fmt""os""github.com/twilio/twilio-go/client")func main() {// You can find your Auth Token at twilio.com/console// For this example: authToken := "12345"authToken := os.Getenv("TWILIO_AUTH_TOKEN")requestValidator := client.NewRequestValidator(authToken)// Twilio's request URLurl := "https://mycompany.com/myapp.php?foo=1&bar=2"// Post variables in Twilio's requestparams := map[string]string{"CallSid": "CA1234567890ABCDE","Caller": "+12349013030","Digits": "1234","From": "+12349013030","To": "+18005551212",}// X-Twilio-Signature header attached to the requestsignature := "0/KCTR6DLpKmkAf8muzZqo1nDgQ="// Validate GET requestfmt.Println(requestValidator.Validate(url, params, signature))// Example of the POST requestBody := []byte(`{"property": "value", "boolean": true}`)theUrl := "https://mycompany.com/myapp.php?bodySHA256=0a1ff7634d9ab3b95db5c9a2dfe9416e41502b283a80c7cf19632632f96e6620"theSignature := "y77kIzt2vzLz71DgmJGsen2scGs="// Validate POST requestfmt.Println(requestValidator.ValidateBody(theUrl, Body, theSignature))}
Use standalone products
Don't want to import the top-level Twilio RestClient with access to the full suite of Twilio products? Use standalone product services instead:
package mainimport ("github.com/twilio/twilio-go/client"twilioApi "github.com/twilio/twilio-go/rest/api/v2010"serverless "github.com/twilio/twilio-go/rest/serverless/v1""os")func main() {accountSid := os.Getenv("TWILIO_ACCOUNT_SID")authToken := os.Getenv("TWILIO_AUTH_TOKEN")// Create an instance of our default BaseClient implementation// You will need to provide your API credentials to the Client manuallydefaultClient := &client.Client{Credentials: client.NewCredentials(accountSid, authToken),}defaultClient.SetAccountSid(accountSid)coreApiService := twilioApi.NewApiServiceWithClient(defaultClient)serverlessApiService := serverless.NewApiServiceWithClient(defaultClient)}
Other advanced examples
Build Access Tokens
This library supportsaccess token generation for use in the Twilio Client SDKs.
Here's how you would generate a token for the Voice SDK:
package mainimport ("os""github.com/twilio/twilio-go/client/jwt")accountSid := os.Getenv("TWILIO_ACCOUNT_SID")applicationSid := os.Getenv("TWILIO_TWIML_APP_SID")apiKey := os.Getenv("TWILIO_API_KEY")apiSecret := os.Getenv("TWILIO_API_SECRET")identity := "fake123"params := jwt.AccessTokenParams{AccountSid: accountSid,SigningKeySid: apiKey,Secret: apiSecret,Identity: identity,}jwtToken := jwt.CreateAccessToken(params)voiceGrant := &jwt.VoiceGrant{Incoming: jwt.Incoming{Allow: true},Outgoing: jwt.Outgoing{ApplicationSid: applicationSid,},}jwtToken.AddGrant(voiceGrant)token, err := jwtToken.ToJwt()
Create Capability Tokens for TaskRouter v1:
package mainimport ("os""github.com/twilio/twilio-go/client/jwt/taskrouter")AccountSid := os.Getenv("TWILIO_ACCOUNT_SID")AuthToken := os.Getenv("TWILIO_AUTH_TOKEN")WorkspaceSid := os.Getenv("TWILIO_WORKSPACE_SID")ChannelID := os.Getenv("TWILIO_CHANNEL_ID")Params = taskrouter.CapabilityTokenParams{AccountSid: AccountSid,AuthToken: AuthToken,WorkspaceSid: WorkspaceSid,ChannelID: ChannelID,}capabilityToken := taskrouter.CreateCapabilityToken(Params)token, err := capabilityToken.ToJwt()
Local Usage
Building
To buildtwilio-go run:
go build ./...
Testing
To execute the test suite run:
go test ./...
Generating Local Documentation
To generate documentation, from the root directory:
godoc -http=localhost:{port number}
Then, navigate tohttp://localhost:{port number}/pkg/github.com/twilio/twilio-go
in your local browser.
Example:
godoc -http=localhost:6060
http://localhost:6060/pkg/github.com/twilio/twilio-go
OAuth Feature for twilio-go
The Twilio Go library now includes an OAuth feature that allows you to authenticate API requests using OAuth 2.0 tokens. This feature is particularly useful for applications that require enhanced security and token-based authentication.
To use the OAuth feature, you can refer topublic-oauth.md for an example of how to implement it in your application.
Docker Image
TheDockerfile
present in this repository and its respectivetwilio/twilio-go
Docker image are currently used by Twilio for testing purposes only.
Getting help
If you need help installing or using the library, please check theTwilio Support Help Center first, andfile a support ticket if you don't find an answer to your question.
If you've instead found a bug in the library or would like new features added, go ahead and open issues or pull requests against this repo!
Documentation¶
Overview¶
- This code was generated by
- ___ _ _ _ _ _ _ ____ ____ ____ _ ____ ____ _ _ ____ ____ ____ ___ __ __
- | | | | | | | | | __ | | |__| | __ | __ |___ |\ | |___ |__/ |__| | | | |__/
- | |_|_| | |___ | |__| |__| | | | |__] |___ | \| |___ | \ | | | |__| | \*
- NOTE: This class is auto generated by OpenAPI Generator.
- https://openapi-generator.tech
- Do not edit the class manually.
Package twilio provides bindings for Twilio's REST APIs.
Index¶
Constants¶
This section is empty.
Variables¶
This section is empty.
Functions¶
This section is empty.
Types¶
typeAPIOAuth¶added inv1.25.0
type APIOAuth struct {// contains filtered or unexported fields}
APIOAuth handles OAuth authentication for the Twilio API.
funcNewAPIOAuth¶added inv1.25.0
func NewAPIOAuth(c *client.RequestHandler, creds *OAuthCredentials) *APIOAuth
NewAPIOAuth creates a new APIOAuth instance with the provided request handler and credentials.
typeClientCredentialProvider¶added inv1.25.0
type ClientCredentialProvider struct {// GrantType specifies the type of grant being used for OAuth.GrantTypestring// ClientId is the identifier for the client application.ClientIdstring// ClientSecret is the secret key for the client application.ClientSecretstring}
ClientCredentialProvider holds the necessary credentials for client authentication.
typeClientParams¶added inv0.23.0
type ClientParams struct {// Username is the account SID for authentication.Usernamestring// Password is the authentication token for the account.Passwordstring// AccountSid is the specific account SID to be used.AccountSidstring// Client is the base client used for making HTTP requests.Clientclient.BaseClient// ClientCredentialProvider holds the necessary credentials for client authentication.ClientCredentialProvider *ClientCredentialProvider}
ClientParams holds the parameters required to initialize a Twilio RestClient.Incase where the ClientCredentialProvider is provided, the Username and Password fields are ignored.And when neither is provided, the environment variables TWILIO_ACCOUNT_SID and TWILIO_AUTH_TOKEN are used.
typeMeta¶
type Meta struct {FirstPageURL *string `json:"first_page_url"`Key *string `json:"key"`LastPageURL *string `json:"last_page_url,omitempty"`NextPageURL *string `json:"next_page_url"`Page *int `json:"page"`PageSize *int `json:"page_size"`PreviousPageURL *string `json:"previous_page_url"`URL *string `json:"url"`}
Meta holds relevant pagination resources.
typeOAuthCredentials¶added inv1.25.0
type OAuthCredentials struct {// GrantType specifies the type of grant being used for OAuth.GrantTypestring// ClientId is the identifier for the client application. ClientSecret is the secret key for the client application.ClientId, ClientSecretstring}
OAuthCredentials holds the necessary credentials for OAuth authentication.
typeRestClient¶added inv0.8.0
type RestClient struct {*client.RequestHandlerAccountsV1 *AccountsV1.ApiServiceApi *Api.ApiServiceAssistantsV1 *AssistantsV1.ApiServiceBulkexportsV1 *BulkexportsV1.ApiServiceChatV1 *ChatV1.ApiServiceChatV2 *ChatV2.ApiServiceChatV3 *ChatV3.ApiServiceContentV1 *ContentV1.ApiServiceContentV2 *ContentV2.ApiServiceConversationsV1 *ConversationsV1.ApiServiceEventsV1 *EventsV1.ApiServiceFlexV1 *FlexV1.ApiServiceFlexV2 *FlexV2.ApiServiceFrontlineV1 *FrontlineV1.ApiServicePreviewIamV1 *PreviewIamV1.ApiServicePreviewIamOrganization *PreviewIamOrganization.ApiServiceIamV1 *IamV1.ApiServiceIamV2 *IamV2.ApiServiceInsightsV1 *InsightsV1.ApiServiceIntelligenceV2 *IntelligenceV2.ApiServiceIpMessagingV1 *IpMessagingV1.ApiServiceIpMessagingV2 *IpMessagingV2.ApiServiceLookupsV1 *LookupsV1.ApiServiceLookupsV2 *LookupsV2.ApiServiceMarketplaceV1 *MarketplaceV1.ApiServiceMessagingV1 *MessagingV1.ApiServiceMessagingV2 *MessagingV2.ApiServiceMonitorV1 *MonitorV1.ApiServiceNotifyV1 *NotifyV1.ApiServiceNumbersV1 *NumbersV1.ApiServiceNumbersV2 *NumbersV2.ApiServiceOauthV1 *OauthV1.ApiServicePricingV1 *PricingV1.ApiServicePricingV2 *PricingV2.ApiServiceProxyV1 *ProxyV1.ApiServiceRoutesV2 *RoutesV2.ApiServiceServerlessV1 *ServerlessV1.ApiServiceStudioV1 *StudioV1.ApiServiceStudioV2 *StudioV2.ApiServiceSupersimV1 *SupersimV1.ApiServiceSyncV1 *SyncV1.ApiServiceTaskrouterV1 *TaskrouterV1.ApiServiceTrunkingV1 *TrunkingV1.ApiServiceTrusthubV1 *TrusthubV1.ApiServiceVerifyV2 *VerifyV2.ApiServiceVerifyV3 *VerifyV3.ApiServiceVideoV1 *VideoV1.ApiServiceVoiceV1 *VoiceV1.ApiServiceWirelessV1 *WirelessV1.ApiService}
RestClient provides access to Twilio services.
funcNewRestClient¶added inv0.8.0
func NewRestClient() *RestClient
NewRestClient provides an initialized Twilio RestClient.
funcNewRestClientWithParams¶added inv0.8.0
func NewRestClientWithParams(paramsClientParams) *RestClient
NewRestClientWithParams provides an initialized Twilio RestClient with params.
func (*RestClient)SetEdge¶added inv0.8.0
func (c *RestClient) SetEdge(edgestring)
SetEdge sets the Edge for the Twilio request.
func (*RestClient)SetRegion¶added inv0.8.0
func (c *RestClient) SetRegion(regionstring)
SetRegion sets the Region for the Twilio request. Defaults to "us1" if an edge is provided.
func (*RestClient)SetTimeout¶added inv0.8.0
func (c *RestClient) SetTimeout(timeouttime.Duration)
SetTimeout sets the Timeout for Twilio HTTP requests.
typeTokenAuth¶added inv1.25.0
type TokenAuth struct {// Token is the cached OAuth token.Tokenstring}
TokenAuth handles token-based authentication using OAuth.
func (*TokenAuth)Expired¶added inv1.25.0
Expired returns true if the current token is expired, or the expiration status cannot be determined due to an error.
func (*TokenAuth)FetchToken¶added inv1.25.0
FetchToken retrieves the current token if it is valid, or fetches a new token using the OAuth client.
func (*TokenAuth)NewTokenAuth¶added inv1.25.0
NewTokenAuth creates a new TokenAuth instance with the provided token and OAuth client.
Directories¶
Path | Synopsis |
---|---|
Package client provides internal utilities for the twilio-go client library. | Package client provides internal utilities for the twilio-go client library. |
rest | |