google-server-api 0.4.0.2 → 0.4.1.0
raw patch · 2 files changed
+3/−1 lines, 2 files
Files
- google-server-api.cabal +1/−1
- src/Google/JWT.hs +2/−0
google-server-api.cabal view
@@ -5,7 +5,7 @@ -- see: https://github.com/sol/hpack name: google-server-api-version: 0.4.0.2+version: 0.4.1.0 synopsis: Google APIs for server to server applications description: This library provides a way to use Google API for server to server applications. category: Web
src/Google/JWT.hs view
@@ -82,6 +82,7 @@ | ScopeGmailSend | ScopeDriveFile | ScopeDriveMetadataRead+ | ScopeSpreadsheets deriving (Eq, Show, Read, Ord) {-| Make sure if you added new scope, update configuration in page bellow.@@ -94,6 +95,7 @@ scopeUrl ScopeGmailFull = "https://www.googleapis.com/auth/gmail" scopeUrl ScopeDriveFile = "https://www.googleapis.com/auth/drive.file" scopeUrl ScopeDriveMetadataRead = "https://www.googleapis.com/auth/drive.metadata.readonly"+scopeUrl ScopeSpreadsheets = "https://www.googleapis.com/auth/spreadsheets" -- | Get the private key obtained from the -- Google API Console from a PEM 'String'.