Call API using curl in seed.rb

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.

Thanks!

Daya.

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

Hi Fred,

Thanks for your reply.

Actually i got the API result form chrome postman.(https://chrome.google.com/webstore/detail/postman/fhbjgbiflinjbdggehcddcbncdddomop?hl=en)

Here i gave the URL like https://pipeline-api.locallabs.com/api/v1/organizations?min_updated_at='2015-11-13&limit=10’ and i set the authorization key in header an got the Exact result.

But i don’t know how to access this url in Rails. If i give this URL in browser then return unauthorized result.

Please suggest me.

Thanks!