On Tuesday, November 17, 2015 at 3:14:33 PM UTC, daynthan kabilan wrote:
>
> Hi,
>
> I need to call API using curl in seed.rb
>
> Before i have used API like
>
> response = HTTParty.get("
> https://pipeline.locallabs.com/api/v1/organizations?access_key=XXXXXX";)
>
> i don't know how to call API using curl in ssed.rb
>
> now my client assign one new domain and mentioned this was working for him.
>
> curl -H'Authorization: KEY' 
> https://pipeline-api.locallabs.com/api/v1/organizations?min_updated_at='2015-11-13&limit=10
> '
>
> Any one know how to call API using curl in seed.rb please let me know.
>
>
Why use curl instead of a ruby method (e.g. HTTPary since you are already 
used to that) ? You can shell out with system, popen etc but that seems 
like an inferior solution unless there is some other constraint you haven't 
mentioned. You can pass headers by doing something like 
HTTPParty.get("http://...";, headers: {foo: 'bar'})

Fred

-- 
You received this message because you are subscribed to the Google Groups "Ruby 
on Rails: Talk" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/rubyonrails-talk/a0d4cd33-56ef-4fb0-abbe-3a765918f3e4%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to