tophatter / facebook-ruby-ads-sdk

The Facebook Marketing API in Ruby.
https://developers.facebook.com/docs/marketing-apis
MIT License
62 stars 39 forks source link

Fetch all accounts limited to 25 #4

Closed mhoskiso closed 7 years ago

mhoskiso commented 7 years ago

I'm unable to retrieve more than 25 accounts. Needs an option to paginate.

mhoskiso commented 7 years ago

I've added query[:limit] ||= 200 to get for now.

cte commented 7 years ago

Thanks for the heads up. Will fix shortly.

cte commented 7 years ago

This should do it: cdcc32d4efb843943775dd338468ba6b15e5f912

Fetch your accounts like this:

FacebookAds::AdAccount.all(limit: 200)