Method: Funky::Connection::API.fetch_all
- Defined in:
- lib/funky/connections/api.rb
.fetch_all(path_query) ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
12 13 14 15 |
# File 'lib/funky/connections/api.rb', line 12 def self.fetch_all(path_query) uri = URI "https://#{host}/#{FB_API_VERSION}/#{path_query}&limit=100&access_token=#{app_id}%7C#{app_secret}" fetch_data_with_paging_token(uri) end |