Facebook API (PHP) : Get Full Ads List











up vote
0
down vote

favorite












I am using Facebook API to fetch the full Ads list.



The Code is working, But it return only 25 Ad in case of i have 150+ Ad in my account.



I guess that happens because of the query limits on the Facebook API.



My Code:



$account = new AdAccount('act_<AD_ACCOUNT_ID>');
$account->read();

$fields_adset = array(
AdSetFields::ID,
AdSetFields::NAME,
AdSetFields::CAMPAIGN_ID,
AdSetFields::STATUS,
);

$ads = $account->getAds($fields_adset);

foreach ($ads as $adset) {
$adset_id = $adset->{AdSetFields::ID};
echo $adset_id;
//print_r($adset);
//exit();
}


So, they mentioned in the documentation that :




Use Asynchronous Requests to query a huge amount of data




Reference (1) : https://developers.facebook.com/docs/marketing-api/best-practices/



Reference (2) : https://developers.facebook.com/docs/marketing-api/insights/best-practices/#asynchronous



But, I can't apply that "Asynchronous" requests to my code to fetch the Full Ad List,



Please help me to fetch the full Ads list



Thank you.










share|improve this question







New contributor




m500500 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
























    up vote
    0
    down vote

    favorite












    I am using Facebook API to fetch the full Ads list.



    The Code is working, But it return only 25 Ad in case of i have 150+ Ad in my account.



    I guess that happens because of the query limits on the Facebook API.



    My Code:



    $account = new AdAccount('act_<AD_ACCOUNT_ID>');
    $account->read();

    $fields_adset = array(
    AdSetFields::ID,
    AdSetFields::NAME,
    AdSetFields::CAMPAIGN_ID,
    AdSetFields::STATUS,
    );

    $ads = $account->getAds($fields_adset);

    foreach ($ads as $adset) {
    $adset_id = $adset->{AdSetFields::ID};
    echo $adset_id;
    //print_r($adset);
    //exit();
    }


    So, they mentioned in the documentation that :




    Use Asynchronous Requests to query a huge amount of data




    Reference (1) : https://developers.facebook.com/docs/marketing-api/best-practices/



    Reference (2) : https://developers.facebook.com/docs/marketing-api/insights/best-practices/#asynchronous



    But, I can't apply that "Asynchronous" requests to my code to fetch the Full Ad List,



    Please help me to fetch the full Ads list



    Thank you.










    share|improve this question







    New contributor




    m500500 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
    Check out our Code of Conduct.






















      up vote
      0
      down vote

      favorite









      up vote
      0
      down vote

      favorite











      I am using Facebook API to fetch the full Ads list.



      The Code is working, But it return only 25 Ad in case of i have 150+ Ad in my account.



      I guess that happens because of the query limits on the Facebook API.



      My Code:



      $account = new AdAccount('act_<AD_ACCOUNT_ID>');
      $account->read();

      $fields_adset = array(
      AdSetFields::ID,
      AdSetFields::NAME,
      AdSetFields::CAMPAIGN_ID,
      AdSetFields::STATUS,
      );

      $ads = $account->getAds($fields_adset);

      foreach ($ads as $adset) {
      $adset_id = $adset->{AdSetFields::ID};
      echo $adset_id;
      //print_r($adset);
      //exit();
      }


      So, they mentioned in the documentation that :




      Use Asynchronous Requests to query a huge amount of data




      Reference (1) : https://developers.facebook.com/docs/marketing-api/best-practices/



      Reference (2) : https://developers.facebook.com/docs/marketing-api/insights/best-practices/#asynchronous



      But, I can't apply that "Asynchronous" requests to my code to fetch the Full Ad List,



      Please help me to fetch the full Ads list



      Thank you.










      share|improve this question







      New contributor




      m500500 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.











      I am using Facebook API to fetch the full Ads list.



      The Code is working, But it return only 25 Ad in case of i have 150+ Ad in my account.



      I guess that happens because of the query limits on the Facebook API.



      My Code:



      $account = new AdAccount('act_<AD_ACCOUNT_ID>');
      $account->read();

      $fields_adset = array(
      AdSetFields::ID,
      AdSetFields::NAME,
      AdSetFields::CAMPAIGN_ID,
      AdSetFields::STATUS,
      );

      $ads = $account->getAds($fields_adset);

      foreach ($ads as $adset) {
      $adset_id = $adset->{AdSetFields::ID};
      echo $adset_id;
      //print_r($adset);
      //exit();
      }


      So, they mentioned in the documentation that :




      Use Asynchronous Requests to query a huge amount of data




      Reference (1) : https://developers.facebook.com/docs/marketing-api/best-practices/



      Reference (2) : https://developers.facebook.com/docs/marketing-api/insights/best-practices/#asynchronous



      But, I can't apply that "Asynchronous" requests to my code to fetch the Full Ad List,



      Please help me to fetch the full Ads list



      Thank you.







      php facebook api facebook-graph-api facebook-php-sdk






      share|improve this question







      New contributor




      m500500 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.











      share|improve this question







      New contributor




      m500500 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.









      share|improve this question




      share|improve this question






      New contributor




      m500500 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.









      asked 2 days ago









      m500500

      92




      92




      New contributor




      m500500 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.





      New contributor





      m500500 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.






      m500500 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.
























          1 Answer
          1






          active

          oldest

          votes

















          up vote
          0
          down vote













          You should implement pagination (or request a limit more high). With the PHP SDK you can implement the cursor as described in the doc here or more simply set the Implicit Fetching, as example:



          ..
          use FacebookAdsCursor;

          ...
          Cursor::setDefaultUseImplicitFetch(true);


          $account = new AdAccount('act_<AD_ACCOUNT_ID>');
          $account->read();

          $fields_adset = array(
          AdSetFields::ID,
          AdSetFields::NAME,
          AdSetFields::CAMPAIGN_ID,
          AdSetFields::STATUS,
          );

          $ads = $account->getAds($fields_adset);

          foreach ($ads as $adset) {
          $adset_id = $adset->{AdSetFields::ID};
          echo $adset_id;
          //print_r($adset);
          //exit();
          }


          Hope this help






          share|improve this answer





















            Your Answer






            StackExchange.ifUsing("editor", function () {
            StackExchange.using("externalEditor", function () {
            StackExchange.using("snippets", function () {
            StackExchange.snippets.init();
            });
            });
            }, "code-snippets");

            StackExchange.ready(function() {
            var channelOptions = {
            tags: "".split(" "),
            id: "1"
            };
            initTagRenderer("".split(" "), "".split(" "), channelOptions);

            StackExchange.using("externalEditor", function() {
            // Have to fire editor after snippets, if snippets enabled
            if (StackExchange.settings.snippets.snippetsEnabled) {
            StackExchange.using("snippets", function() {
            createEditor();
            });
            }
            else {
            createEditor();
            }
            });

            function createEditor() {
            StackExchange.prepareEditor({
            heartbeatType: 'answer',
            convertImagesToLinks: true,
            noModals: true,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: 10,
            bindNavPrevention: true,
            postfix: "",
            imageUploader: {
            brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
            contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
            allowUrls: true
            },
            onDemand: true,
            discardSelector: ".discard-answer"
            ,immediatelyShowMarkdownHelp:true
            });


            }
            });






            m500500 is a new contributor. Be nice, and check out our Code of Conduct.










             

            draft saved


            draft discarded


















            StackExchange.ready(
            function () {
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53373654%2ffacebook-api-php-get-full-ads-list%23new-answer', 'question_page');
            }
            );

            Post as a guest















            Required, but never shown

























            1 Answer
            1






            active

            oldest

            votes








            1 Answer
            1






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes








            up vote
            0
            down vote













            You should implement pagination (or request a limit more high). With the PHP SDK you can implement the cursor as described in the doc here or more simply set the Implicit Fetching, as example:



            ..
            use FacebookAdsCursor;

            ...
            Cursor::setDefaultUseImplicitFetch(true);


            $account = new AdAccount('act_<AD_ACCOUNT_ID>');
            $account->read();

            $fields_adset = array(
            AdSetFields::ID,
            AdSetFields::NAME,
            AdSetFields::CAMPAIGN_ID,
            AdSetFields::STATUS,
            );

            $ads = $account->getAds($fields_adset);

            foreach ($ads as $adset) {
            $adset_id = $adset->{AdSetFields::ID};
            echo $adset_id;
            //print_r($adset);
            //exit();
            }


            Hope this help






            share|improve this answer

























              up vote
              0
              down vote













              You should implement pagination (or request a limit more high). With the PHP SDK you can implement the cursor as described in the doc here or more simply set the Implicit Fetching, as example:



              ..
              use FacebookAdsCursor;

              ...
              Cursor::setDefaultUseImplicitFetch(true);


              $account = new AdAccount('act_<AD_ACCOUNT_ID>');
              $account->read();

              $fields_adset = array(
              AdSetFields::ID,
              AdSetFields::NAME,
              AdSetFields::CAMPAIGN_ID,
              AdSetFields::STATUS,
              );

              $ads = $account->getAds($fields_adset);

              foreach ($ads as $adset) {
              $adset_id = $adset->{AdSetFields::ID};
              echo $adset_id;
              //print_r($adset);
              //exit();
              }


              Hope this help






              share|improve this answer























                up vote
                0
                down vote










                up vote
                0
                down vote









                You should implement pagination (or request a limit more high). With the PHP SDK you can implement the cursor as described in the doc here or more simply set the Implicit Fetching, as example:



                ..
                use FacebookAdsCursor;

                ...
                Cursor::setDefaultUseImplicitFetch(true);


                $account = new AdAccount('act_<AD_ACCOUNT_ID>');
                $account->read();

                $fields_adset = array(
                AdSetFields::ID,
                AdSetFields::NAME,
                AdSetFields::CAMPAIGN_ID,
                AdSetFields::STATUS,
                );

                $ads = $account->getAds($fields_adset);

                foreach ($ads as $adset) {
                $adset_id = $adset->{AdSetFields::ID};
                echo $adset_id;
                //print_r($adset);
                //exit();
                }


                Hope this help






                share|improve this answer












                You should implement pagination (or request a limit more high). With the PHP SDK you can implement the cursor as described in the doc here or more simply set the Implicit Fetching, as example:



                ..
                use FacebookAdsCursor;

                ...
                Cursor::setDefaultUseImplicitFetch(true);


                $account = new AdAccount('act_<AD_ACCOUNT_ID>');
                $account->read();

                $fields_adset = array(
                AdSetFields::ID,
                AdSetFields::NAME,
                AdSetFields::CAMPAIGN_ID,
                AdSetFields::STATUS,
                );

                $ads = $account->getAds($fields_adset);

                foreach ($ads as $adset) {
                $adset_id = $adset->{AdSetFields::ID};
                echo $adset_id;
                //print_r($adset);
                //exit();
                }


                Hope this help







                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered 2 days ago









                Matteo

                25.5k105873




                25.5k105873






















                    m500500 is a new contributor. Be nice, and check out our Code of Conduct.










                     

                    draft saved


                    draft discarded


















                    m500500 is a new contributor. Be nice, and check out our Code of Conduct.













                    m500500 is a new contributor. Be nice, and check out our Code of Conduct.












                    m500500 is a new contributor. Be nice, and check out our Code of Conduct.















                     


                    draft saved


                    draft discarded














                    StackExchange.ready(
                    function () {
                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53373654%2ffacebook-api-php-get-full-ads-list%23new-answer', 'question_page');
                    }
                    );

                    Post as a guest















                    Required, but never shown





















































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown

































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown







                    Popular posts from this blog

                    MongoDB - Not Authorized To Execute Command

                    in spring boot 2.1 many test slices are not allowed anymore due to multiple @BootstrapWith

                    How to fix TextFormField cause rebuild widget in Flutter