サービスアカウントを使用する代わりに、次のコマンドを使用して、(このスレッドの上位の回答に従って)新しいユーザー権限を追加する必要を回避できます。 OAuth client ID
認証情報。
行くAPI資格ダッシュボード [資格情報の作成]-> [OAuthクライアントID]をクリックします。その後、APIを認証するために必要なクライアントIDとクライアントシークレットを取得する必要があります。
これで、を使用OAuth2WebServerFlow
して認証を使用できるようになります。これはpython3の例です:
from apiclient.discovery import build
from oauth2client.client import OAuth2WebServerFlow
# TODO: Fill these in...
CLIENT_ID = ''
CLIENT_SECRET = ''
VIEW_ID = ''
flow = OAuth2WebServerFlow(
CLIENT_ID, CLIENT_SECRET,
'https://www.googleapis.com/auth/analytics.readonly',
redirect_uri='urn:ietf:wg:oauth:2.0:oob'
)
authorize_url = flow.step1_get_authorize_url()
print('Receive code from:\n%s\n' % authorize_url)
code = input('Enter code here:').strip()
credentials = flow.step2_exchange(code)
api = build('analyticsreporting', 'v4', credentials=credentials)
body={
'reportRequests': [{
'viewId': VIEW_ID,
'dateRanges': [{'startDate': '7daysAgo', 'endDate': 'today'}],
'metrics': [{'expression': 'ga:sessions'}],
'dimensions': [{'name': 'ga:country'}]
}]
}
data = api.reports().batchGet(body=body).execute()