-
Notifications
You must be signed in to change notification settings - Fork 1
Home
Mark edited this page Aug 11, 2017
·
8 revisions
- Method to check actual response results
films = ExSwapi.all(:films) # returns a map consisting of metadata w/ the actual results
actual_films = ExSwapi.actual_results(films)- Paginating capability (next and previous)
films = ExSwapi.all(:films)
next_page = ExSwapi.next(films)
previous_page = ExSwapi.prev(films)