0

If this is the raw data I can see in an API response from a simple GET request made on Insomnia to a website:

   <!DOCTYPE html>
      <head>
        <meta charset="utf-8" />
        <meta content="authenticity_token" name="csrf-param" />
    <meta content="abcdefg=" name="csrf-token" />
      </head>

      <body></body>
    </html>

How would I access the csrf-token value of abcdefg using XPATH if I am wanting to chain the response above such that I can use the csrf token in the headers another Insomnia request?

This is what is what I thought was correct: head/meta[@name='csrf-param']

If I only include head/meta the live preview is Returned more than one result: head/meta.

In the image below, you can see how this is set up but it appears that there is an "error" in the live response.

Image of the error I see when I try to filter the response body

4

1 回答 1

0

这将获得abcdefgfrom的值csrf-token

//head/meta[@name='csrf-token']/@content
于 2020-04-22T12:55:44.440 回答