Please help me in fixing curl command and python code. I am putting the secret key, but unable to get the CAMPAIGN_ID
. I have created an ad for my facebook page, but couldn't find CAMPAIGN_ID
, I have tried to use Ad id, but that also didn't work.
curl -G \
-d "level=ad" \
-d "fields=impressions,ad_id" \
-d "access_token=<ACCESS_TOKEN>" \
"https://graph.facebook.com/<API_VERSION>/<CAMPAIGN_ID>/insights"
I also used the python code below, but got a few errors.
from facebook_business.objects import AdCampaign
campaign = AdCampaign('<AD_CAMPAIGN_ID>')
params = {
'date_preset': AdCampaign.Preset.last_7_days,
}
insights = campaign.get_insights(params=params)
print insights
Below is the error:
traceback (most recent call last): File "fbAds2.py", line 1, in <module> from facebook_business.objects import AdCampaign ModuleNotFoundError: No module named 'facebook_business.objects'```
I get the same error so I changed the code a bit and got results