GoSungrow/google/const.go
2022-02-10 12:55:11 +11:00

10 lines
689 B
Go

package google
const (
DefaultGoogleClientId = "424242424242-42424242424242424242424242424242.apps.googleusercontent.com"
DefaultGoogleClientSecret = "424242424242424242424242"
DefaultGoogleCredentials = `{"installed":{"client_id":"424242424242-42424242424242424242424242424242.apps.googleusercontent.com","project_id":"isolarcloud","auth_uri":"https://accounts.google.com/o/oauth2/auth","token_uri":"https://oauth2.googleapis.com/token","auth_provider_x509_cert_url":"https://www.googleapis.com/oauth2/v1/certs","client_secret":"424242424242424242424242","redirect_uris":["urn:ietf:wg:oauth:2.0:oob","http://localhost"]}}
`
DefaultAuthTokenFile = "GoogleSheetsAuthToken.json"
)