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 20Lists all the Google Task Lists associated with the given service account. 21Service accounts are created in the Google API Console. See the documentation 22for more information: 23 24 https://developers.google.com/console/help/#WhatIsKey 25 26Usage: 27 $ python tasks.py 28""" 29 30__author__ = 'jcgregorio@google.com (Joe Gregorio)' 31 32import httplib2 33import pprint 34import sys 35 36from googleapiclient.discovery import build 37from oauth2client.service_account import ServiceAccountCredentials 38 39def 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 60if __name__ == '__main__': 61 main(sys.argv) 62