Why Google Ad Manager Income not Show in Adsense - adsense

I have a blog hazabarolo.com and I am new on Google Ad Manager. In my Google Ad Manager Dashboard, I have see my Daily Income. But When I go my adsense I can not see Google Ad Manager Income.
Please any can help me to understand me.

Adsense, as an adnetwork, is not able to get the same data than Ad Manager, the adserver. Quick reminder of each role :
Google Ad Manager is an adserver : its role is to handle ad inventories and manage/prioritize campaigns on your site. Ad Manager is able to gather statistics on what delivered on your placements.
Google AdSense is an adnetwork : its role is to fill your inventory with ads and provide you revenue. Adsense is only able to gather statistics about its own campaigns.
Everything is detailed here.

Related

Manage data for multiple ads accounts by Facebook Marketing API

my team uses many Facebook Business Manager to manage multiple Ad Accounts. Usually our employees will check the Amount Spent and Bill manually in Facebook sites. But now the number of ad accounts increases, I would like to automate the tasks: syncing data from Facebook to our own database (for high manager to view).
I tried with my own Facebook Account (by my own facebook App), I can get the Amount Spent already. My questions are:
What is the API to get Amount Billed, I searched around but not yet found
Because the number of ad accounts is big, what will be the good approach? (I am thinking of create a sole app and let the advertisers authorize it, And use the token to call Graph API; 2nd way is: each facebook user create their own app, this will not need Facebook to approve the app).
Sorry for my bad English, I am really new to Facebook API, please help. Thank you very much.
You can get Budget,Spend... with Ad Set (lifetime_budget,daily_budget)
https://developers.facebook.com/docs/marketing-api/reference/ad-campaign#fields
and get report Cpc,cpm... with Insight
https://developers.facebook.com/docs/marketing-api/reference/ad-campaign-group/insights/#fields

Instagram ads engagement is only for business api?

I am doing a project for my company and I am stuck. I have to make this cost-effective.
In this link there are some methods to get comments and do comment but it gives me error: "(#10) Application does not have permission for this action" and when I try to query them with standard API it says that media_id is not valid(I got the media id with oembed code btw I am not putting there effective story id).
My question is:
Do I have any solution for getting and doing comments to ads other than switching to Business API? If I don't how should I progress with this? Should I just send my app to review with instagram_manage_comments?
Thanks
Ad comments are on Ad media - and Instagram ads are only created via facebook ad account.
You have to use facebook ad graph API. You can check detail info at this answer: Instagram dark posts, using api to read info and do operations
The link you gave in the question is correct starting point to fetch ad media and comments. However you don't need Instagram accounts to be converted to "business account" to be linked with FB page(more context for that here). But you do need to connect with FB ad account for ads media.

How to use the Facebook Ads API to get custom columns in Ads Manager?

I've been experimenting with the Facebook Marketing API to see what I can access in terms of the user's campaigns, ad sets and ads etc. One thing I'm curious by, through the API, is it possible to get the customised columns that the user has selected when viewing metrics for their campaigns, ad sets or ads?
For example, the user has selected to see only Delivery, Cost and Budget metrics for their ad sets. Can I somehow know they've picked these columns from the API alone?
You can't. The Ads manager on Facebook is just another app using the Marketing API (same goes for Power editor, Graph API explorer and others).
Settings of the Ads manager aren't part of ad account data and are private to the app.

How can I verify multiple other Adsense publisher-ids on my website

I have a website with articles written by myself and others. To reward the other persons for written content for my website I would like to share the Adsense income. I'm thinking about making a standard Adsense code and let the publisher-id rotate.
Can I just use their publisher-id or should the others person verify my website somehow in their Adsense account? And may I just use multiple publisher-ids on my website?
Hopefully someone can tell me what to do. Can't it lead to a ban?
Google states "Publishers are permitted to place ad code from different AdSense accounts on the same page as long as the owner of the website has given permission for ads to be placed on their site, and the webpage complies with our program policies.
A publisher will only be credited for clicks and impressions on the ad units associated with their account. Additionally, publishers are responsible for monitoring each webpage upon which their ad code appears to ensure compliance with our policies."
Source: Google Groups
Google's policy on using your own AdSense account on another publisher's website is here: https://support.google.com/adsense/answer/1346295?hl=en. You will also need to get the publisher to add you to their ads.txt file, as described by Google here: https://support.google.com/admanager/answer/7441288?hl=en .
Below are highlights from these two sources:
Ads on the same page or site as another publisher
If a site is in compliance with our program policies and the company or owner of the site has given you permission to display ads on their site, you may place your ad code on the same page as the other publisher's ad code. You will, however, need to contact your web hosting company or the owner of the site to obtain permission to display ads on their site. Additionally, you will only be credited for clicks and impressions on the ad units associated with your account.
Keep in mind that every publisher is responsible for the content of a site on which their ad code is placed. If a site is found in violation of our policies, we will notify any publisher(s) whose ad code is on the site.
....
Authorized Digital Sellers, or ads.txt, is an IAB initiative to improve transparency in programmatic advertising. Publishers can create their own ads.txt files to identify who is authorized to sell their inventory. The files are publicly available and crawlable by buyers, third-party vendors, and exchanges.

Not getting expected campaign IDs when using Facebook Ad Report Stats API

I created an access token with my personal account with additional ad_management permissions. I used curl to exchange this short-lived token for a permanent access token.
The roles page for my ads account says "You can manage campaigns, view reports, and view billing information."
I use this access_token with curl to get the offsite_conversions count from yesterday. The results contain data for a few campaigns. However these campaigns are nowhere to be found in the campaigns list in the ads manager. If I click a campaign and replace the ID in the url with one of the campaign ids int he response I get a "This content is currently unavailable" error page.
Additionally there are at least three campaigns shown in the ads manager's campaign list which do have a few offsite conversions recorded which are not showing up in the response of the Ad Report Stats API call.
How can I get more information to solve this problem?
I was confused by the relatively recent change in the ad campaign terminologies. The reporting api is still using the old terms where a campaign corresponds to what is now an ad set.
If you want to match the campaigns in the ads manager with the campaigns you can fetch with the marketing api I would recommend you add ?fields=name. If you don't recognise the names, then there is probably something wrong :-)