Answers for "recupere le nom d'un document dans google drive drive api"

0

recupere le nom d'un document dans google drive drive api

private static IConfigurableHttpClientInitializer Authenticate()
{
    X509Certificate2 cert = new X509Certificate2(@"CheminVersVotreFichierP12.p12", "notasecret", X509KeyStorageFlags.MachineKeySet | X509KeyStorageFlags.PersistKeySet | X509KeyStorageFlags.Exportable);
 
    ServiceAccountCredential cred = new ServiceAccountCredential(
        new ServiceAccountCredential.Initializer("[email protected]")
        {
            User = "[email protected]", // Vous pouvez spécifier un utilisateur spécifique ici
            Scopes = new[] { DriveService.Scope.Drive },
        }.FromCertificate(cert));
    return cred;
}
Posted by: Guest on April-09-2021

Browse Popular Code Answers by Language