24-01-23 03:22 AM
CSRF Token setup: https://www.baeldung.com/postman-send-csrf-token
24-01-23 05:31 AM
Hi Prabhakara,
Are you not getting it as part of response on authentication? It sometimes is part of the headers on authentication.
Thanks.
24-01-23 10:01 PM
25-01-23 04:46 AM
Hi Prabhakara,
I think the token is part of cookie. You can modify the code to get cookies from the response.
Make a duplicate of HTTP Request page and try the following code (untested) on line 66, you might have to add one more text output cookies
Using response As HttpWebResponse = request.GetResponse()
For Each cookie As Cookie In response.Cookies
cookies += cookie.Name.ToString() + cookie.Value.ToString() + cookie.Path.ToString() + cookie.Domain.ToString()
Next
25-01-23 10:13 PM
02-02-23 08:58 PM
02-02-23 09:06 PM