I am trying to access my google Spreadsheet using oauth2 using the gspread Python Library.I am new to Oauth2 and understand its benefits.But I am unable to use it.So far I have visited https://code.google.com/apis/console/ and generated CLIENT ID,SECRET and REDIRECT URI.
credentials = SignedJwtAssertionCredentials('developer@example.com', SIGNED_KEY, scope)
According to the Gspread Docs I will need a SIGNED_KEY object.How do I get that?
An example will be very helpful.