-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexample_client_test.go
62 lines (51 loc) · 1.58 KB
/
example_client_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
package sfdc_test
import (
"time"
"github.com/muesli/cache2go"
"go.stellar.af/go-sfdc"
)
// In this example, the cache2go caching backend is used, but any caching backend can be used.
func ExampleNew() {
cache := cache2go.Cache("go-sfdc")
cache.Flush()
// Define a callback function to retrieve the Salesforce OAuth2 access token from the cache.
getAccessToken := func() (string, error) {
res, err := cache.Value("access-token")
if err != nil {
return "", nil
}
token := res.Data().(string)
return token, nil
}
// Define a callback function to add the Salesforce OAuth2 access token from the cache.
setAccessToken := func(token string, expiresIn time.Duration) error {
cache.Add("access-token", expiresIn, token)
return nil
}
// Salesforce Connected App OAuth2 Client ID.
clientID := "abcdef1234567890"
// Salesforce Connected App OAuth2 Client Secret.
clientSecret := "0987654321fedcba"
// If set, the encryption passphrase is used to encrypt all values written to the cache
// using AES-256-GCM encryption.
var encryptionPassphrase *string
passphrase := "xY2jK9a8s6d5fE7H"
encryptionPassphrase = &passphrase
// If you do not wish to encrypt cached values, pass nil.
encryptionPassphrase = nil
// Salesforce authentication URL.
// See: https://help.salesforce.com/s/articleView?id=sf.remoteaccess_oauth_jwt_flow.htm
authURL := "https://login.salesforce.com"
client, err := sfdc.New(
clientID,
clientSecret,
authURL,
encryptionPassphrase,
getAccessToken,
setAccessToken,
)
if err != nil {
// handle error
}
client.Account("001G00000789QPONML")
}