API を使用して Doubleclick Bid Manager から広告申込情報を読み取る Python プログラムを作成していますが、getlineitems へのクエリの作成中に問題に直面しています。認証するには、ここに私のコードがあります:
authorize_url = flow.step1_get_authorize_url()
# After entering the verification for code,
code = raw_input('Code: ').strip()
credential = flow.step2_exchange(code)
クレデンシャルを oauth2client.client.OAuth2Credentials オブジェクトとして取得できました。次に、次のパラメーターを使用して、http 要求を作成します。
params = dict(
api_key='xxxxxxxxxxxxxxxxxx' # client secret from the API JSON file
)
url = 'https://developers.google.com/bid-manager/v1/lineitems/downloadlineitems'
r = requests.get(url = url, params=params)
しかし、私のリクエストは 404 を返します。コードが見つかりません。API ガイドライン ( https://developers.google.com/bid-manager/v1/lineitems/downloadlineitems ) に従って、次の HTTP リクエストを行う必要があります。
POST https://www.googleapis.com/doubleclickbidmanager/v1/lineitems/downloadlineitems?key={YOUR_API_KEY}
どんな助けでも大歓迎です。