cancel
Showing results forย 
Search instead forย 
Did you mean:ย 

Web Service Security

AdrianH
New Contributor II

Does anyone have any material on enabling web service security above and beyond the OOTB Bearer token stuff?

Thanks!

Any help much appreciated.

Yours,

Adrian

8 REPLIES 8

Bhavin
Former Employee

you can use curl or any of your fav REST API testing client like postman https://www.getpostman.com/

curl https://pipeline-url?bearer_token=abc123

Bearer token is generated when you deploy your pipeline as a triggered task โ€“ see this link for more details http://doc.snaplogic.com/tasks โ†’ Running a Pipeline from a URL section

You can also invoke pipeline by passing your snaplogic credโ€™s as basic auth credentials and for that

curl https://uname%40domain.com:yourPassword@pipeline-url

more info HTTP Basic Authentication - what's the expected web browser experience? - Stack Overflow

AdrianH
New Contributor II

Hi,

Thanks but the curl bit doesnโ€™t look like a secure way as the credentials appear to be exposed.

The basic auth bit below assumes that a service account has been set up correct?

Thanks!

Yours,

Adrian

f003192a1f3cbff81737c51a6c1ed5f5dd97394e.jpg

Bhavin
Former Employee

yes, I wouldnt recommend curl and service account is optional, have you tried postman? it lets you set basic auth in a secure way, pwd is masked

Piyush
New Contributor III

I guess there is none for standard pipelines