Home > Enterprise >  How to login to Domino session based authentication using Postman?
How to login to Domino session based authentication using Postman?

Time:08-24

How can I login to a Domino session based authentication form using postman and get authenticated data. The server is setup to accept basic authentication.

Tried both POST and GET using this url but it does not seem to work

http://server/names.nsf?login&username=zzz&password=zzz&RedirectTo=http://server/database/view?readviewentries

can I access the data in one request or do I first need to authenticate using fomr-data and later get data?

any other way to do it?

CodePudding user response:

On the Authorization tab select Basic Auth as type and add your username and password.

enter image description here

  • Related