Browse Source
Correct the spelling for the google in the configuration sample
Correct the spelling for the google in the configuration sample
pull/23727/head
Sheikh Sadi
5 months ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
5 additions and
5 deletions
-
docs/en/framework/infrastructure/blob-storing/google.md
|
|
|
@ -27,11 +27,11 @@ Configure<AbpBlobStoringOptions>(options => |
|
|
|
{ |
|
|
|
container.UseGoogle(google => |
|
|
|
{ |
|
|
|
google.ClientEmail = "your coogle client email"; |
|
|
|
google.ProjectId = "your coogle project id"; |
|
|
|
google.PrivateKey = "your coogle private key"; |
|
|
|
google.Scopes = "your coogle scopes"; |
|
|
|
google.ContainerName = "your coogle container name"; |
|
|
|
google.ClientEmail = "your google client email"; |
|
|
|
google.ProjectId = "your google project id"; |
|
|
|
google.PrivateKey = "your google private key"; |
|
|
|
google.Scopes = "your google scopes"; |
|
|
|
google.ContainerName = "your google container name"; |
|
|
|
google.CreateContainerIfNotExists = true; |
|
|
|
//google.UseApplicationDefaultCredentials = true; // If you want to use application default credentials |
|
|
|
}); |
|
|
|
|