Home | History | Annotate | Download | only in service_account
      1 #!/usr/bin/env python
      2 # -*- coding: utf-8 -*-
      3 #
      4 # Copyright 2014 Google Inc. All Rights Reserved.
      5 #
      6 # Licensed under the Apache License, Version 2.0 (the "License");
      7 # you may not use this file except in compliance with the License.
      8 # You may obtain a copy of the License at
      9 #
     10 #      http://www.apache.org/licenses/LICENSE-2.0
     11 #
     12 # Unless required by applicable law or agreed to in writing, software
     13 # distributed under the License is distributed on an "AS IS" BASIS,
     14 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     15 # See the License for the specific language governing permissions and
     16 # limitations under the License.
     17 
     18 """Simple command-line sample that demonstrates service accounts.
     19 
     20 Lists all the Google Task Lists associated with the given service account.
     21 Service accounts are created in the Google API Console. See the documentation
     22 for more information:
     23 
     24    https://developers.google.com/console/help/#WhatIsKey
     25 
     26 Usage:
     27   $ python tasks.py
     28 """
     29 
     30 __author__ = 'jcgregorio (at] google.com (Joe Gregorio)'
     31 
     32 import httplib2
     33 import pprint
     34 import sys
     35 
     36 from googleapiclient.discovery import build
     37 from oauth2client.service_account import ServiceAccountCredentials
     38 
     39 def main(argv):
     40   # Load the json format key that you downloaded from the Google API
     41   # Console when you created your service account. For p12 keys, use the
     42   # from_p12_keyfile method of ServiceAccountCredentials and specify the 
     43   # service account email address, p12 keyfile, and scopes.
     44   credentials = ServiceAccountCredentials.from_json_keyfile_name(
     45       'service-account-abcdef123456.json',
     46       scopes='https://www.googleapis.com/auth/tasks')
     47 
     48   # Create an httplib2.Http object to handle our HTTP requests and authorize
     49   # it with the Credentials.
     50   http = httplib2.Http()
     51   http = credentials.authorize(http)
     52 
     53   service = build("tasks", "v1", http=http)
     54 
     55   # List all the tasklists for the account.
     56   lists = service.tasklists().list().execute(http=http)
     57   pprint.pprint(lists)
     58 
     59 
     60 if __name__ == '__main__':
     61   main(sys.argv)
     62