oauth2client.client で Google Play やその他の Google API を取得しようとする人はいますか? 一部、次のコードを書きました。
import httplib2
import requests
from oauth2client.client import flow_from_clientsecrets
flow = flow_from_clientsecrets('path_to_dir\\client_secret.json',
scope = 'https://www.googleapis.com/auth/androidpublisher',
redirect_uri='')
auth_uri = flow.step1_get_authorize_url()
credentials = flow.step2_exchange(code)
http = httplib2.Http()
http = credentials.authorize(http)
コードパラメータを取得する方法を教えてください。エラーは次のとおりです。
NameError: name 'code' is not defined
選択したAPIのメソッドを呼び出す方法は?