结合使用Google Picasa API和Python - python

最近六个月以来,我一直在成功使用Google的Picasa API。
今天我开始出现错误

    raise GooglePhotosException(e.args[0])
GooglePhotosException: (403, 'Forbidden', 'Authorization required')

我检查了我的凭据。

    self.gd_client = gdata.photos.service.PhotosService()
    self.gd_client.email = EmailOfTheUploadingPictureAccount
    self.gd_client.password = PasswordOfTheAccount
    self.gd_client.source = 'destipak' #Not sure about that
    self.feed_url = "/data/feed/api/user/"
    self.entry_url = "/data/entry/api/user/"
    self.gd_client.ProgrammaticLogin() 

自昨天以来一切都运转良好。有人有任何线索吗?

编辑

Picasa上为python给出的示例也不起作用。
URL

#!/usr/bin/python2.5

import gdata.photos.service
import gdata.media
import gdata.geo

gd_client = gdata.photos.service.PhotosService()
gd_client.email = '=change='     # Set your Picasaweb e-mail address...
gd_client.password = '=change='  # ... and password
gd_client.source = 'api-sample-google-com'
gd_client.ProgrammaticLogin()

albums = gd_client.GetUserFeed()
for album in albums.entry:
  print 'Album: %s (%s)' % (album.title.text, album.numphotos.text)

  photos = gd_client.GetFeed('/data/feed/api/user/default/albumid/%s?kind=photo' % (album.gphoto_id.text))
  for photo in photos.entry:
    print '  Photo:', photo.title.text

    tags = gd_client.GetFeed('/data/feed/api/user/default/albumid/%s/photoid/%s?kind=tag' % (album.gphoto_id.text, photo.gphoto_id.text))
    for tag in tags.entry:
      print '    Tag:', tag.title.text

    comments = gd_client.GetFeed('/data/feed/api/user/default/albumid/%s/photoid/%s?kind=comment' % (album.gphoto_id.text, photo.gphoto_id.text))
    for comment in comments.entry:
      print '    Comment:', comment.content.text

编辑2

全面追溯

Traceback (most recent call last):
  File "/Users/mac/Picasa_API.py", line 158, in <module>
    check_api()
  File "/Users/mac/Picasa_API.py", line 140, in check_api
    albums = gd_client.GetUserFeed()
  File "/Users/mac/destipak/env/lib/python2.7/site-packages/gdata/photos/service.py", line 235, in GetUserFeed
    return self.GetFeed(uri, limit=limit)
  File "/Users/mac/destipak/env/lib/python2.7/site-packages/gdata/photos/service.py", line 180, in GetFeed
    raise GooglePhotosException(e.args[0])
gdata.photos.service.GooglePhotosException: (403, 'Forbidden', 'Authorization required')

python大神给出的解决方案

这是我用于与Picasa进行OAuth2身份验证的代码。首先,您需要通过Google Developer Console创建客户端ID:位于https://console.developers.google.com/,然后必须将客户端密钥作为JSON下载并将文件名传递给OAuth2Login。

第一次运行此代码时,您将必须通过Web浏览器授权客户端,然后将到那里的代码粘贴到应用程序中。然后将凭据存储在credential_store指定的文件中。

def OAuth2Login(client_secrets, credential_store, email):
    scope='https://picasaweb.google.com/data/'
    user_agent='myapp'

    storage = Storage(credential_store)
    credentials = storage.get()
    if credentials is None or credentials.invalid:
        flow = flow_from_clientsecrets(client_secrets, scope=scope, redirect_uri='urn:ietf:wg:oauth:2.0:oob')
        uri = flow.step1_get_authorize_url()
        webbrowser.open(uri)
        code = raw_input('Enter the authentication code: ').strip()
        credentials = flow.step2_exchange(code)
        storage.put(credentials)

    if (credentials.token_expiry - datetime.utcnow()) < timedelta(minutes=5):
        http = httplib2.Http()
        http = credentials.authorize(http)
        credentials.refresh(http)

    gd_client = gdata.photos.service.PhotosService(source=user_agent,
                                               email=email,
                                               additional_headers={'Authorization' : 'Bearer %s' % credentials.access_token})

    return gd_client