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
parent
commit
9985178c07
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 10
      docs/en/framework/infrastructure/blob-storing/google.md

10
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
});

Loading…
Cancel
Save