Skip to content
Mark edited this page Aug 11, 2017 · 8 revisions

TODO

  1. 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)
  1. Paginating capability (next and previous)
films = ExSwapi.all(:films)
next_page = ExSwapi.next(films)
previous_page = ExSwapi.prev(films)

Clone this wiki locally