|
Version 2.1.0
Hi folks,
The rest-client 2.1.0 final release is now available.
https://rubygems.org/gems/rest-client/versions/2.1.0
https://github.com/rest-client/rest-client/releases/tag/v2.1.0
Notable changes
Hi folks,
The rest-client 2.1.0 final release is now available.
https://rubygems.org/gems/rest-client/versions/2.1.0
https://github.com/rest-client/rest-client/releases/tag/v2.1.0
Notable changes
|
By
Andy Brody
·
#326
·
|
|
rest-client version 1.6.13 backdoored with malicious code [CVE-2019-15224]
Hi all,
On August 14, attackers published a series of rest-client versions
from 1.6.10 to 1.6.13 using the credentials of a rest-client
maintainer whose RubyGems.org account was compromised. The
Hi all,
On August 14, attackers published a series of rest-client versions
from 1.6.10 to 1.6.13 using the credentials of a rest-client
maintainer whose RubyGems.org account was compromised. The
|
By
Andy Brody
·
#325
·
|
|
rest-client 2.0.2
Hi folks,
Today the rest-client 2.0.2 release is available with one minor bugfix
of an excessive warning that was introduced in version
Hi folks,
Today the rest-client 2.0.2 release is available with one minor bugfix
of an excessive warning that was introduced in version
|
By
Andy Brody
·
#324
·
|
|
rest-client 2.0.1
Hi folks,
Today the rest-client 2.0.1 release is available with a few minor
Hi folks,
Today the rest-client 2.0.1 release is available with a few minor
|
By
Andy Brody
·
#323
·
|
|
rest-client 2.0.0.rc4
Hi all,
The fourth release candidate for rest-client 2.0.0 is now available
for testing from GitHub and
Hi all,
The fourth release candidate for rest-client 2.0.0 is now available
for testing from GitHub and
|
By
Andy Brody
·
#322
·
|
|
rest-client 1.8.0 released with security fixes
Hi all,
Rest-client 1.8.0 is now available on GitHub and rubygems.org:
https://rubygems.org/gems/rest-client/versions/1.8.0
https://github.com/rest-client/rest-client/releases/tag/v1.8.0
This
Hi all,
Rest-client 1.8.0 is now available on GitHub and rubygems.org:
https://rubygems.org/gems/rest-client/versions/1.8.0
https://github.com/rest-client/rest-client/releases/tag/v1.8.0
This
|
By
Andy Brody <andy@...>
·
#321
·
|
|
rest-client 1.7.3 released
Hi all,
Rest-client 1.7.3 is now available on GitHub and RubyGems.org:
https://rubygems.org/gems/rest-client/versions/1.7.3
https://github.com/rest-client/rest-client/releases/tag/v1.7.3
There are
Hi all,
Rest-client 1.7.3 is now available on GitHub and RubyGems.org:
https://rubygems.org/gems/rest-client/versions/1.7.3
https://github.com/rest-client/rest-client/releases/tag/v1.7.3
There are
|
By
Andy Brody <andy@...>
·
#320
·
|
|
How do i upload a file using form-data?
Hello,
I would like to write a REST client to upload a document using form data.
I tried multiple options options, but could not help.
REST CLIENT fails:
self.class.post(path, :documentName =>
Hello,
I would like to write a REST client to upload a document using form data.
I tried multiple options options, but could not help.
REST CLIENT fails:
self.class.post(path, :documentName =>
|
By
Srikanth Hugar <srikanth.hugar@...>
·
#319
·
|
|
Re: convert Curl with headers -H and -- data to RestClient
Pretty close, here is what finally worked:
url_sms = "https://api.sendhub.com/v1/messages/?username=#{NUMBER}\&api_key=#{APIKEY}"
smspacket = {:contacts => ["#{contact_id}"], :text =>
Pretty close, here is what finally worked:
url_sms = "https://api.sendhub.com/v1/messages/?username=#{NUMBER}\&api_key=#{APIKEY}"
smspacket = {:contacts => ["#{contact_id}"], :text =>
|
By
Timothy Fong <timfong888@...>
·
#318
·
|
|
Re: convert Curl with headers -H and -- data to RestClient
I get the following error (I made some adjustments because of formatting):
RestClient::BadRequest: 400 Bad Request
--
Tim Fong
timfong888@...
Schedule a quick call
I get the following error (I made some adjustments because of formatting):
RestClient::BadRequest: 400 Bad Request
--
Tim Fong
timfong888@...
Schedule a quick call
|
By
Timothy Fong <timfong888@...>
·
#317
·
|
|
Re: convert Curl with headers -H and -- data to RestClient
Hi I tried this but it an auth error. Let me try again.
Sent from my iPhone
Hi I tried this but it an auth error. Let me try again.
Sent from my iPhone
|
By
Tim Fong <timfong888@...>
·
#316
·
|
|
Re: convert Curl with headers -H and -- data to RestClient
RestClient.post "https://api.sendhub.com/v1/messages/?username=NUMBER\&api_key=API", { 'contacts' => [1111], 'text' => 'Testing }.to_json, :content_type => 'application/json'
I hope this works.
RestClient.post "https://api.sendhub.com/v1/messages/?username=NUMBER\&api_key=API", { 'contacts' => [1111], 'text' => 'Testing }.to_json, :content_type => 'application/json'
I hope this works.
|
By
Kannan Manickam <kannan@...>
·
#315
·
|
|
convert Curl with headers -H and -- data to RestClient
How do I convert the following to Restclient?
curl -H "Content-Type: application/json" -X POST --data '{"contacts" : [1111],"text" : "Testing"}'
How do I convert the following to Restclient?
curl -H "Content-Type: application/json" -X POST --data '{"contacts" : [1111],"text" : "Testing"}'
|
By
Timothy Fong <timfong888@...>
·
#314
·
|
|
Multipart Payload Content Types for individual parts
Hello,
I've been trying to use multipart payload to send a message with multiple parts each with an 'application/json' type and there is currently no way of achieving this. Is this currently not
Hello,
I've been trying to use multipart payload to send a message with multiple parts each with an 'application/json' type and there is currently no way of achieving this. Is this currently not
|
By
Kannan Manickam <kannan@...>
·
#313
·
|
|
Re: Dealing with offline APIs
Apologies for not researching the matter more thoroughly before resorting to this list.
I didn't realize REST Client had a `timeout` function, so I added an exception for `RestClient::RequestTimeout`
Apologies for not researching the matter more thoroughly before resorting to this list.
I didn't realize REST Client had a `timeout` function, so I added an exception for `RestClient::RequestTimeout`
|
By
Frank Tellefsen <tellefsenfrank@...>
·
#312
·
|
|
Dealing with offline APIs
Hi,
I'm using REST Client to fetch some stuff from this API (main_controller.rb @ http://runnable.com/U-QJCIFvY2RGWL9B/pretty-json-keys). However, if the API goes offline, my whole app will time
Hi,
I'm using REST Client to fetch some stuff from this API (main_controller.rb @ http://runnable.com/U-QJCIFvY2RGWL9B/pretty-json-keys). However, if the API goes offline, my whole app will time
|
By
Frank Tellefsen <tellefsenfrank@...>
·
#311
·
|
|
bugfix rest-client 1.7.1 and 1.7.2 released
Hi folks,
We've shaken a few bugs out of the 1.7.x branch. Errors on duplicate
CA certificates on Windows are now gracefully handled. Rest-client
will now allow but not depend on mime-types 2.0. A
Hi folks,
We've shaken a few bugs out of the 1.7.x branch. Errors on duplicate
CA certificates on Windows are now gracefully handled. Rest-client
will now allow but not depend on mime-types 2.0. A
|
By
Andy Brody <andy@...>
·
#310
·
|
|
rest-client 1.6.8 and 1.7.0 released
The first new releases of REST Client in quite some time are now
available on RubyGems!
Please find the changelog on GitHub at
https://github.com/rest-client/rest-client/blob/v1.7.0/history.md
On
The first new releases of REST Client in quite some time are now
available on RubyGems!
Please find the changelog on GitHub at
https://github.com/rest-client/rest-client/blob/v1.7.0/history.md
On
|
By
Andy Brody <andy@...>
·
#309
·
|
|
Re: rest-client 1.6.8.rc1 and 1.7.0.rc1
Unsubscribe?
By
Jonathan Brown <johnnybrown7@...>
·
#308
·
|
|
rest-client 1.6.8.rc1 and 1.7.0.rc1
Hello Ruby REST Client fans,
The rest-client gem has been long, long overdue for a new release, so I just wanted to let you all know that prereleases are finally hitting the wire.
1.6.8.rc1 is
Hello Ruby REST Client fans,
The rest-client gem has been long, long overdue for a new release, so I just wanted to let you all know that prereleases are finally hitting the wire.
1.6.8.rc1 is
|
By
Larry Gilbert <larry@...>
·
#306
·
|