i am new to python and we are working on one project, which needs to collect information from google+ account through api.Tried the below code, but getting errors.
from apiclient.discovery import build
service = build('plus', 'v1', developerKey='Client Secret')
people_service = service.people()
people_document = people_service.get(userId='me').execute()
print 'Display name: %s' % people_document.get('displayName')
error i am getting is : googleapiclient.errors.HttpError: https://www.googleapis.com/plus/v1/people/me?alt=json&key=xxxx returned "Bad Request">. Can any one suggest me what should be the developerkey in service object?