Gdata python Google apps authentication
Asked Answered
P

2

6

I have been able to login to Google spreadsheet with gdata python client.programmaticlogin function following the sample/spreadsheet in gdata downloaded pack.

Now I am not able to login to my enterprise gapps '[email protected]' do I have to pass any other arms? I tried with account type Hosted didn't work.

I tried creating oath2 key from gui, I have my client id and email id generated. Running the oauth sample in gdata asks for consumerkey and secret key. Can somebody advise on this please?

Phenosafranine answered 25/2, 2013 at 20:31 Comment(0)
P
7

ok I got it solved with the below

import gdata.gauth

Client_id='xxx';
Client_secret='yyy'
Scope='https://spreadsheets.google.com/feeds/'
User_agent='myself'

token = gdata.gauth.OAuth2Token(client_id=Client_id,client_secret=Client_secret,scope=Scope,user_agent=User_agent)
print token.generate_authorize_url(redirect_uri='urn:ietf:wg:oauth:2.0:oob')
code = raw_input('What is the verification code? ').strip()
token.get_access_token(code)
print "Refresh token\n"
print token.refresh_token
print "Access Token\n"
print token.access_token
Phenosafranine answered 8/3, 2013 at 10:25 Comment(0)
H
0

Take a look here for an example of how to use client login. Its part of a library I created in order to make working with Google Spreadsheet simple.

Huynh answered 28/2, 2013 at 13:57 Comment(1)
import gdata.gauth Client_id='xxx'; Client_secret='yyy' Scope='spreadsheets.google.com/feeds' User_agent='myself' token = gdata.gauth.OAuth2Token(client_id=Client_id,client_secret=Client_secret,scope=Scope,user_agent=User_agent) print token.generate_authorize_url(redirect_uri='urn:ietf:wg:oauth:2.0:oob') code = raw_input('What is the verification code? ').strip() token.get_access_token(code) print "Refresh token\n" print token.refresh_token print "Access Token\n" print token.access_tokenPhenosafranine

© 2022 - 2024 — McMap. All rights reserved.