Thanh Tran <[email protected]> writes: > I am fairly new to Ruby on Rails and have done tutorials on making a > blogging app. For this web application that I am making, I am trying to > implement the Bandsintown api ( > https://www.bandsintown.com/api/1.0/authentication) so users can see if > there are upcoming events for an artist they pick. Unfortunately, after > reading http://bandsintown.rubyforge.org/, I still do not understand how to > do even the simplest methods. Any help would be appreciated.
Before sticking an unknown API into a RoR application, I'm going to suggest learning exactly how it works in a tiny application (just plain old ruby) such as creating some tests with MiniTest, or even just poking at it with Pry. When you know just how it works, then putting it into a RoR app will be lot easier. It's just a lot harder to debug this sort of thing embedded in the middle of all that other stuff going on. -- Tamara Temple [email protected] http://www.tamouse.org -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/rubyonrails-talk/m2zix7o4sz.fsf%40gmail.com. For more options, visit https://groups.google.com/d/optout.

