[I am unable to get the values of x-nonce from response Header,
I have to pass these X-nonce values in next API's, How can I get them and use? ]1
[I am unable to get the values of x-nonce from response Header,
I have to pass these X-nonce values in next API's, How can I get them and use? ]1
If you want the whole value you can do it using Regular Expression Extractor configured like:
Response Headers
nonce
x-nonce?\s*:?\s* (.*)
$1$
Explanation:
?\s*
- any number of optional whitespace characters(
and )
- grouping.
- matches any character*
- repetitionMore information: