I am trying to connect to google api using REST API URL so that I can integrate the same with Apigee. But when I tried the below I am getting 404 not found response. Please advice

import requests headers = { 'Authorization': 'Bearer access token', 'developer-token': 'xxxxyyyy', } response = requests.get('https://googleads.googleapis.com/v2/customers/<customerid>/campaigns', headers=headers) 

Tag:google-ads-api, python, curl, apigee

Add a new comment.