hello team,
I have a problem when i try to post request to get reporting my ads in test account,
i try to request simple data reporting like get id of my campaign in my test account, can i get my test account data with adwords API?
i build my own request without use existing lib adwords, because i build API Call in delphi, i try my request in post man, i have follow this HTTP Post Request :
POST /api/adwords/reportdownload/v201809 HTTP/1.1
Host: adwords.google.com
User-Agent: curl, gzip
Accept: */*
Accept-Encoding: gzip
Authorization: Bearer [Enter OAuth 2.0 access token here]
developerToken: [Enter developerToken here]
clientCustomerId: [Enter clientCustomerID here]
Content-Length: 182
Expect: 100-continue
Content-Type: multipart/form-data;
Parameters:
__fmt: CSV
__rdquery: SELECT CampaignId, AdGroupId, Impressions, Clicks, Cost
FROM ADGROUP_PERFORMANCE_REPORT
WHERE AdGroupStatus IN [ENABLED, PAUSED] DURING LAST_7_DAYS
but i got bad Request, i try it use TidHTTP in delphi, and try it in postman too, can you tell me is there mistake from my post request?
Thanks,