(tokenType string, domain string)
| 109 | } |
| 110 | |
| 111 | func oauthConfig(tokenType string, domain string) *oauth2.Config { |
| 112 | appKey := oauthCredentials(tokenType) |
| 113 | return oauthConfigWithAppKey(appKey, domain) |
| 114 | } |
| 115 | |
| 116 | func oauthConfigWithAppKey(appKey string, domain string) *oauth2.Config { |
| 117 | endpoint := dropbox.OAuthEndpoint(domain) |
no test coverage detected