Go client for Plaid. This is not a comprehensive client. It includes the following endpoints
- POST /auth/get
- POST /item/public_token/exchange
- POST /item/public_token/create
client := plaid.NewClient("some_id","some_secret",plaid.Sandbox)
resp, err := client.AuthGet("access token value here")
Included also is a legacy client, instantiated in the same way. It will automatically use the correct urls.
client := plaid.NewLegacyClient("some_id","some_secret",plaid.Sandbox)