fbsamples / audience-network

Open source projects to demonstrate SDK and sample code usages and integration, and to collaborate and support peers in this community.
https://developers.facebook.com/docs/audience-network
Other
318 stars 370 forks source link

no fill + Ad failed to load: Ads loaded too frequently #101

Closed Warmanfarooq closed 3 years ago

Warmanfarooq commented 5 years ago

(1)The ad is not loaded as the error mentioned in previous issue .

(2)The ad is not loaded but once it loaded it did't shows the ad.. give the error( Ad failed to load: Ads loaded too frequently)

The thing is i am not request any other request for ad load.. i write it once in the code ( adView.loadAd() )

The main purpose is that .. this error is also occurs in your provided Ad Fb-sample project.. please resolve this or help to resolve that

doandoindi commented 4 years ago

Hello team,

I have the same issue with the sample project. I'm using the SDK version 5.6.0 on IOS platform (installed via Cocoapods). The error appear on 3 ads: banner, interstitial and rewarded video when checked.

The console log as bellow:

2019-12-25 17:08:55.801577+0700 AdUnitsSample[2212:141385] Ad failed to load with error: Error Domain=com.facebook.ads.sdk Code=1001 "No fill" UserInfo={NSLocalizedDescription=No fill, FBAdErrorDetailKey={
    msg = "No fill";
}}
2019-12-25 17:09:00.194659+0700 AdUnitsSample[2212:141385] Ad failed to load with error: Error Domain=com.facebook.ads.sdk Code=1002 "Ad was re-loaded too frequently" UserInfo={NSLocalizedDescription=Ad was re-loaded too frequently, FBAdErrorDetailKey={
}}

Could you check and let us know if there is anything we need to change to have them work correctly?

Regarded, Doan.

gwheet commented 3 years ago

According to facebook's documentation, ad request frequency has certain limit and you should wait 30 minutes before making an other ad request if you received this error.

For further questions, please use the online publisher support portal to submit a request.

vimalcvs commented 2 years ago

@Warmanfarooq Bro how to resolve this problem.

Vedantmodi39 commented 2 years ago

@vimalcvs please tell me the solution

basit112 commented 1 year ago

According to facebook's documentation, ad request frequency has certain limit and you should wait 30 minutes before making an other ad request if you received this error.

For further questions, please use the online publisher support portal to submit a request.

but i am try test ads

Vedantmodi39 commented 1 year ago

What you want say Can you please elaborate

On Mon, Feb 27, 2023, 9:40 PM Abdul Basit @.***> wrote:

According to facebook's documentation https://developers.facebook.com/docs/audience-network/guides/test/checklist-errors#errors, ad request frequency has certain limit and you should wait 30 minutes before making an other ad request if you received this error.

For further questions, please use the online publisher support portal https://www.facebook.com/business/publishersupport?hc_location=ufi to submit a request.

but i am try test ads

— Reply to this email directly, view it on GitHub https://github.com/fbsamples/audience-network/issues/101#issuecomment-1446610401, or unsubscribe https://github.com/notifications/unsubscribe-auth/AT4LMA7CBLZG5OOLHSEGXETWZTGWDANCNFSM4H7CFPPQ . You are receiving this because you commented.Message ID: @.***>

basit112 commented 1 year ago

What you want say Can you please elaborate On Mon, Feb 27, 2023, 9:40 PM Abdul Basit @.> wrote: According to facebook's documentation https://developers.facebook.com/docs/audience-network/guides/test/checklist-errors#errors, ad request frequency has certain limit and you should wait 30 minutes before making an other ad request if you received this error. For further questions, please use the online publisher support portal https://www.facebook.com/business/publishersupport?hc_location=ufi to submit a request. but i am try test ads — Reply to this email directly, view it on GitHub <#101 (comment)>, or unsubscribe https://github.com/notifications/unsubscribe-auth/AT4LMA7CBLZG5OOLHSEGXETWZTGWDANCNFSM4H7CFPPQ . You are receiving this because you commented.Message ID: @.>

i am trying audience network test ad on fragment but it giving me same error that Error ads: Ad was re-loaded too frequently and no fill error last night it doing well but now i am getting same error

basit112 commented 1 year ago
   private void showBanner() {

        adView = new AdView(getActivity(), "IMG_16_9_APP_INSTALL#YOUR_PLACEMENT_ID", AdSize.BANNER_HEIGHT_50);

        adContainer.addView(adView);

        AdListener adListener = new AdListener() {
            @Override
            public void onError(Ad ad, AdError adError) {
                Log.d(TAG, "Error ads: " + adError.getErrorMessage());
            }

            @Override
            public void onAdLoaded(Ad ad) {
                Log.d(TAG, "Error ads: " + ad.toString());
            }

            @Override
            public void onAdClicked(Ad ad) {
// Ad clicked callback
            }

            @Override
            public void onLoggingImpression(Ad ad) {
            }
        };
        adView.loadAd(adView.buildLoadAdConfig().withAdListener(adListener).build());
    }

this function calls on onCreateView in both fragment

@Override
    public void onDestroy() {

        if (adView != null) {
            adView.destroy();
        }
        super.onDestroy();
    }

in same fragment

What you want say Can you please elaborate On Mon, Feb 27, 2023, 9:40 PM Abdul Basit @.> wrote: According to facebook's documentation https://developers.facebook.com/docs/audience-network/guides/test/checklist-errors#errors, ad request frequency has certain limit and you should wait 30 minutes before making an other ad request if you received this error. For further questions, please use the online publisher support portal https://www.facebook.com/business/publishersupport?hc_location=ufi to submit a request. but i am try test ads — Reply to this email directly, view it on GitHub <#101 (comment)>, or unsubscribe https://github.com/notifications/unsubscribe-auth/AT4LMA7CBLZG5OOLHSEGXETWZTGWDANCNFSM4H7CFPPQ . You are receiving this because you commented.Message ID: @.>

Vedantmodi39 commented 1 year ago

Code to sahi lag rhaa hai Tumre project ki Zip file banake send krke doto dekha taa me

On Tue, Feb 28, 2023, 3:53 PM Abdul Basit @.***> wrote:

private void showBanner() {

    adView = new AdView(getActivity(), "IMG_16_9_APP_INSTALL#YOUR_PLACEMENT_ID", AdSize.BANNER_HEIGHT_50);

    adContainer.addView(adView);

    AdListener adListener = new AdListener() {

        @Override

        public void onError(Ad ad, AdError adError) {

            Log.d(TAG, "Error ads: " + adError.getErrorMessage());

        }

        @Override

        public void onAdLoaded(Ad ad) {

            Log.d(TAG, "Error ads: " + ad.toString());

        }

        @Override

        public void onAdClicked(Ad ad) {

// Ad clicked callback

        }

        @Override

        public void onLoggingImpression(Ad ad) {

        }

    };

    adView.loadAd(adView.buildLoadAdConfig().withAdListener(adListener).build());

}

this function calls on onCreateView in both fragment

@Override

public void onDestroy() {

    if (adView != null) {

        adView.destroy();

    }

    super.onDestroy();

}

in same fragment

What you want say Can you please elaborate … <#m_2477562957459519833m-4986896149775090533_> On Mon, Feb 27, 2023, 9:40 PM Abdul Basit @.> wrote: According to facebook's documentation https://developers.facebook.com/docs/audience-network/guides/test/checklist-errors#errors https://developers.facebook.com/docs/audience-network/guides/test/checklist-errors#errors, ad request frequency has certain limit and you should wait 30 minutes before making an other ad request if you received this error. For further questions, please use the online publisher support portal https://www.facebook.com/business/publishersupport?hc_location=ufi https://www.facebook.com/business/publishersupport?hc_location=ufi to submit a request. but i am try test ads — Reply to this email directly, view it on GitHub <#101 (comment) https://github.com/fbsamples/audience-network/issues/101#issuecomment-1446610401>, or unsubscribe https://github.com/notifications/unsubscribe-auth/AT4LMA7CBLZG5OOLHSEGXETWZTGWDANCNFSM4H7CFPPQ https://github.com/notifications/unsubscribe-auth/AT4LMA7CBLZG5OOLHSEGXETWZTGWDANCNFSM4H7CFPPQ . You are receiving this because you commented.Message ID: @.>

— Reply to this email directly, view it on GitHub https://github.com/fbsamples/audience-network/issues/101#issuecomment-1447926358, or unsubscribe https://github.com/notifications/unsubscribe-auth/AT4LMA4Y7KZXH4RIWFIAUCDWZXG2NANCNFSM4H7CFPPQ . You are receiving this because you commented.Message ID: @.***>