mdivk
mdivk

Reputation: 3727

How to pass the credential info in a API call with browser?

In a command line mode, the API call would be something like this:

curl \
    --request GET \
    --header "Content-Type: application/json" \
    --header "Authorization: Bearer dea464c07bd07300095caa8" \
    https://demo.immuta.com/dataSource?size=100&sortField=subscribers

Is there a generic way to convert it into one line URL so I can do this from a browser? or this is up to the site's design? or this must be done through curl or python call?

Thank you very much for your enlightening.

Upvotes: 0

Views: 163

Answers (1)

Sprawl63
Sprawl63

Reputation: 123

I would look at an API development tool like Postman. It will significantly ease development for you.

Upvotes: 1

Related Questions