Admob mediation open bidding on Facebook Audience Network, Ad not loading

Viewed 1625

I was trying to implement Facebook Audience Network on Admob mediation. I couldn't load bidding ad from Admob, but waterfall ad is loading.

This is what i get in test suit.

It always gives : I/Ads: Ad failed to load : 3 in console. which means no ad to serve now. But it past more than 24 hours didn't get any ad. It is unusual for bidding to not serve any ads.

Did i miss anything.

enter image description here

enter image description here

2 Answers

After checking result of AdMob Test suite and Test Ad you are good to go.

Error code "3" means No Fill.

FAN SDK provides fill when below 2 cases are fulfilled.

  1. facebook app must be installed on device or facebook ID is logged in on chrome app.

  2. Your APK must be Installed from the play store.

If both the case is true then you should check the floor price on facebook business manager. For testing remove the floor prices.

Just add your device as test device in FAB account or add it programmatically like:

AdsSetting.addTestdevice("your device id") 

Something like that.

Related