hi all,

i have the code below;

require 'rexml/document'
require 'open-uri'
open('http://api.evdb.com/rest/users/login?app_key=ct2hJqTCg4XLCP5h')
{ |f|
  $res = REXML::Document.new(f.read)

}

the xml data that is read is;

<?xml version="1.0" encoding="UTF-8"?>

<error string="Authorization Required">
  <nonce>6984053721</nonce>
  <description>Please supply a user authentication response using the
nonce provided.</description>
</error>

QUESTIONS

1.  how do i get the value of nonce         (i.e.  6984053721  )

2. is there another way of visiting the url  "http://api.evdb.com/
rest/
users/login?app_key=ct2hJqTCg4XLCP5h"
     without using open-uri as in above

thoughts??

-- 
You received this message because you are subscribed to the Google Groups "Ruby 
on Rails: Talk" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/rubyonrails-talk?hl=en.

Reply via email to