RestClient Error

Hi All,
I’m using rest-client gem to send POST request but getting error that
“connect attempt failed”.

Below are few details on this.

require ‘rest-client’
url=“http:///accounts”

post=RestClient.post(url,{“email” =>
[email protected]”,“password”=>‘hello’},{“appkey” =>
“WsQILsaaKGkzrrzJ36”,“Content-type”=>“application/json”})

=> above post request helps to create user account with email and
password. I’m getting error that “connection attempt failed”. But it was
succeeded with Chrome Plug-in(DHP - Dev HTTP Client).

Hello,

On 27 Φεβ 2014, at 06:59 , Raja T. [email protected] wrote:

Hi All,
I’m using rest-client gem to send POST request but getting error that
“connect attempt failed”.

Can you connect to that server using curl? For example:

curl -v -H “Accept: application/json” -H “Content-type:
application/json” -X POST -d ‘{“one”:“value_here”, “two”:“value_here”}’
http://URL/accounts

Please post full curl reply.

=> above post request helps to create user account with email and
password. I’m getting error that “connection attempt failed”. But it was
succeeded with Chrome Plug-in(DHP - Dev HTTP Client).


Posted via http://www.ruby-forum.com/.

Panagiotis (atmosx) Atmatzidis

email: [email protected]
URL: http://www.convalesco.org
GnuPG ID: 0x1A7BFEC5
gpg --keyserver pgp.mit.edu --recv-keys 1A7BFEC5

Yes, I’m able to connect to the server using curl from windows XP
machine.
Worrying any mistakes from the above program.