I wish to access a web services api from within a rails application and display the data from the api. The api uses a permanent access_token and a parameter full_access=true. So the url i wish to access is similar to
http://.......com/lists.json?access_token=d10884g521fc4dc964fd9v06a9121f63&full_access=true
I'm having trouble creating a simple get request which includes the access_token so any advice would be helpful. Can I use a simple get request or do I need to implement oauth2?
If so a sample of a very simple client would be helpful