Anudeep
Anudeep
> Would it be the same process for all these other auth methods as well: Digest, NTLM, API Keys, OAuth, HAWK etc Yes, for now. Currently the library doesn't have...
Are you able to make the same request in **Postman**? If you can, please capture the header value & use it in pactum headers.
`withAuth` is for **basic** authentication. It won't work for **bearer**. ### Examples Using Headers ```js await pactum.spec() .get('') .withHeaders('Authorization', 'Basic ' + Buffer.from(username + ':' + password).toString('base64')) .expectStatus(200) ``` Using...
Not sure how to use basic auth as part of the URL. Raised an issue for the same in [phin](https://github.com/ethanent/phin/issues/77). As a workaround we can use `withAuth` method. #### Working...
I have never worked on the Digest authentication method. It would be great, if you can give us a sample working code written with [phin](https://github.com/ethanent/phin).
Thanks for Reporting. I will look into it.
Hello @nate1228, thanks for reporting the issue. To further investigate, can you give us a sample data in json format to replicate the issue. As a work around, disable the...
I'm not able to replicate the issue with different formats of GQL query at mock server and postman payload. I might be missing something. ```js mock.addInteraction({ request: { method: 'POST',...
To add more.. - Ability to edit code on the current slide on a live presentation from presenters mode. - Ability to run the code on the current slide and...
The matchers are initially designed to support [contract testing](https://pactumjs.github.io/guides/contract-testing.html). Need to evaluate on how it effects the matching capabilities at flow server if we start supporting callback functions.