I am trying to use the Rest-client gem to do a few small tasks for my app which uses Authlogic to authenticate users. From Rest-Client's API, I see that one can post data necessary for the log-in process like this:

require 'rest_client'
RestClient.post "http://127.0.0.1:3000/user_sessions", {:user_session => {:username => 'myusername', :password => 'mypassword'}}.to_json, :content_type => :json, :accept => :json

Looking at my development log, I see that the app has logged in me and redirected me correctly to the user's private page. However, when I then tried to 'reload' the private page,

RestClient.get 'http://127.0.0.1:3000/users/1'

I am brought back to the login page again, as if I hadn't logged in. So I was wondering if this has to do with something called the session or cookies?

I have used cURL to reproduce this scenario successfully, where I use the switch '-c cookie.txt' to save information about my having already logged in, and use the switch '-b cookie.txt' for each call to tell the remote server about my authenticated-ness. I can understand this concept of like a stamp on your wrist when going in a theme-park or a bar where they know you paid. But I find no mentioning of such a mechanism in RestClient. Any help would be great to solve this. I don't mind trying other http clients, either.

Regards

link|improve this question

feedback

1 Answer

up vote 7 down vote accepted

If you use Authlogic, you could be using the Single Use Token instead of user/pass. The Single Use Token is specifically for API calls like what it sounds like you're doing here.

See: The rdocs here

link|improve this answer
Thanks Josh! I will look into it now. Now, I am concerned about the word 'Single' in the API, does that mean I cannot use it again to log in? Or does it change each time I use it? – Nik Feb 19 '10 at 23:05
1  
@Nik it just means that you have to provide it on each request. So instead of simulating a login and trying to pass the cookies around, you would just include the token. It doesn't change automatically. Think of it like an API key. – Josh Lindsey Feb 23 '10 at 13:50
That sounds great, exactly what I actually wanted. I do use Authlogic with Ryan Bates's railscast as tutorial, which doesn't cover SingleAccesstoken. My User.rb looks like this create_table "users", :force => true do |t| t.string "username" t.string "email" t.string "crypted_password" t.string "password_salt" t.string "persistence_token" t.datetime "created_at" t.datetime "updated_at" t.integer "person_id" t.string "perishable_token", :default => "", :null => false end How can I get single access token functionality? Just a migration ? – Nik Feb 23 '10 at 18:52
1  
script/generate migration add_single_access_token_to_users single_access_token:string Any new users created after this is run will automatically have tokens. If you need to update the old users, you could make a script or use script/console and call reset_single_access_token! on each one. – Josh Lindsey Feb 23 '10 at 19:36
Oh wow, that's it? I will try it now – Nik Feb 23 '10 at 19:46
show 3 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.