Whenever you start working on API call you should use HTTParty. In my opinion it is the best tool to make a API wrapper in a very modular way.I have been playing with it lately, and i got this weird error
1 2 |
|
Well, i know that HTTParty rely on URI module, but i would like to have more details in order to debug it. How about getting more verbose for the http requests i am making. The solution is easy, HTTParty provides a simple tool called debug_output. You can display the debug in stderr and it will show you only the errors or jsut be more verbose and use stdout, it woudl be something like:
1 2 |
|
let see the output:
1 2 3 4 5 6 7 8 9 |
|
Mmmm…i was making a /3movie/ call instead of movie/3, i know what my problem is now.