英文:
Jmeter- how to get the dynamic session id value from response header
问题
[如何在JMeter响应头中检索相应的动态会话ID]
X-Frame-Options: 示例
JS-Client-Event-Session-Id: aaa-bbb
我尝试使用正则表达式和JSON提取器,但无法检索该值。
英文:
[how to retrieve the corresponding dynamic session id in JMeter response header ]
X-Frame-Options: sample
JS-Client-Event-Session-Id: aaa-bbb
i tried from regular expression and json extractor but not able to retrieve the value.
答案1
得分: 0
- 没有看到您的正则表达式配置,无法确定问题出在哪里以及如何修复。
- HTTP响应标头 以字符串的形式返回,您将无法使用JSON提取器进行解析。
示例正则表达式提取器配置:
更多信息:
英文:
- Without seeing your Regular Expression Configuration it's not possible to tell what's wrong and how it should be fixed
- HTTP Response Headers are being returned in form of a String, you won't be able to use JSON Extractor for parsing them.
Example Regular Expression Extractor configuration:
More information:
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论