我如何从请求jmeter获得属性

发布于 2025-01-18 18:19:42 字数 173 浏览 0 评论 0 原文

我需要从请求属性中的会话中获得一个csrftoken,并提出后请求,我该怎么做? nofollow noreferrer”> “

I need to get a csrfToken from the session that is in the request attributes, and put in POST request, how I can do it?enter image description here

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

往日 2025-01-25 18:19:42

按照春季文档您会以看起来像:

<input type="hidden" name="${A}" value="${_csrf.token}"/>

因此您可以使用获取令牌值并将其存储到a jmeter variable 上稍后能够在需要的地方重新使用。

更多信息:

As per Spring documentation you will find the token in the response in form of HTML hidden input looking like:

<input type="hidden" name="${A}" value="${_csrf.token}"/>

so you will be able to use CSS Selector Extractor to get the token value and store it into a JMeter Variable so you will be able to re-use it later on where required.

More information: How to Load Test CSRF-Protected Web Sites

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文