GMGoogleDrive.psm1
$GDriveUri = "https://www.googleapis.com/drive/v3/files/" $GDriveUploadUri = "https://www.googleapis.com/upload/drive/v3/files/" $GDriveOAuth2TokenUri = "https://www.googleapis.com/oauth2/v4/token" $GDriveAccountsTokenUri = "https://accounts.google.com/o/oauth2/v2/auth" $GDriveRevokeTokenUri = "https://accounts.google.com/o/oauth2/revoke" $GDriveAboutURI = "https://www.googleapis.com/drive/v2/about" $GDriveAuthScope = "https://www.googleapis.com/auth/drive" $GDriveProxySettings = @{ } #region Load Public Functions Try { Get-ChildItem "$PSScriptRoot\Public\*.ps1" -Exclude *.tests.ps1, *profile.ps1 | ForEach-Object { $Function = $_.Name . $_.FullName } } Catch { Write-Warning ("{0}: {1}" -f $Function,$_.Exception.Message) Continue } #endregion Load Public Functions |