Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Facebook AudienceNetwork loaded failure: No fill, Error Message "No fill", what is the reason about FaceBook android Advertise?

Facebook AudienceNetwork loaded failure: No fill, Error Message "No fill", what is the reason about FaceBook android Advertise? And facebook ad offten shows me load frequency, the frenquent has limits?

like image 433
antLinghu Avatar asked Sep 19 '15 04:09

antLinghu


People also ask

When testing your app with Facebook's ad units you must specify?

When testing your app with Facebook's ad units you must specify the device hashed ID to ensure the delivery of test ads, add the following code before loading an ad: AdSettings. addTestDevice("328404cebf50ec1fdb05795c0007a8a7"); So add this to your onCreate method: AdSettings.

What is rewarded video on Facebook?

Rewarded Video for Android. Rewarded video ads are a full screen experience where users opt-in to view a video ad in exchange for something of value, such as virtual currency, in-app items, exclusive content, and more. The ad experience is 15-30 second non-skippable and contains an end card with a call to action.

Is device allow listed for testing from monetization manager?

In the Monetization Manager, hover over the left side navigation bar and select Integration --> Testing. You must be signed into the Business Manager as an admin. Toggle the switch to Testing enabled. This toggle enables your devices to be treated as test devices by our ad system and not normal user devices.


4 Answers

You need to add a test device. Go to logcat and type Facebook and you will see a message like this, which is also the solution:

When testing your app with Facebook's ad units you must specify the device hashed ID to ensure the delivery of test ads, add the following code before loading an ad: AdSettings.addTestDevice("328404cebf50ec1fdb05795c0007a8a7");

So add this to your onCreate method:

AdSettings.addTestDevice("328404cebf50ec1fdb05795c0007a8a7");

(Don't forget to use your own hash id.)

like image 151
AlexioVay Avatar answered Oct 21 '22 04:10

AlexioVay


This means we are not able to serve ads to this person. This could occur because:

  • The person testing has not logged into the native Facebook app on their mobile device
  • The person testing has enabled "Limit Ad Tracking" (iOS only) or has selected "Opt out of interest-based ads" (Android only) in their device settings.
  • We don't have ad inventory to show for that person
  • Note that if you can see test ads, your implementation works correctly and people will be able to see ads in your app once it's live.

you can get more clarification here

like image 41
Akshay Paliwal Avatar answered Oct 21 '22 04:10

Akshay Paliwal


Filling in payout details fixed this for me.

If you want to display real Ads, you have to fill in your payout details.

like image 27
Pavan gopal Avatar answered Oct 21 '22 04:10

Pavan gopal


I have same problem in my application but this helps me

Ref: Step 4: Check for Error Codes of Production Ads Requests

Facebook Error : No fill
1001 - No Fill

This is a common error seen while testing, and relates to a "No Fill" response; the most common reason for this is the user is not logged in to the Facebook App when testing your mobile app or not logged in to the Facebook mobile website when testing your mobile website.

  • Error 1001 - No Fill. May be due to one or more of the following:
  • User not logged into Native Facebook App on Mobile Device
  • Limit Ad Tracking turned on (iOS)
  • Opt out of interest-based ads turned on (Android)
  • No Ad Inventory for current user
  • Your testing device must have the native Facebook application installed.

Your application should attempt to make another request after 30 seconds.

And Sometimes According to me

  • If your ad account newly created then wait some time like 1 hour or more after some time you will get some better response

I know its late answer but this may helps other people who new in android and Using Facebook Ads

like image 36
Ashvin solanki Avatar answered Oct 21 '22 02:10

Ashvin solanki