我想登录Google并获取要在IPython中使用的令牌。我发现的所有示例都需要填写scope
,next
consumer_key
或更糟:我的密码......
理想情况下会是这样的:
>>> import googleapiclient.auth
>>> a = gdata.auth(scope='http://photos.google.com', username='mygooglename')
>>> a.get_token()
http://google.com/auth?token=jdlkfjwrefgjroiwfofewjhfejehk
>>> g = gdata.photos.PhotosService(a)
有类似的东西吗?