Fiddler Wildcard AutoResponse用于URL参数

时间:2014-01-30 19:14:45

标签: fiddler auto-responder

Fiddler是否有办法匹配以下网址的自动回复,以便它会匹配网址中间的任何通配符值?

http://test.localhost.com/accounts/ {通配符} /笔记/页面/ 1

2 个答案:

答案 0 :(得分:7)

您可能想要使用正则表达式:

REGEX:http://test\.localhost\.com/accounts/.*/notes/page/1

或者

REGEX:http://test\.localhost\.com/accounts/.+/notes/page/1

如果您的通配符必须是1个或多个字符。

注意:您的问题标题提到了“查询参数”,但问题的文字似乎与网址的“路径”组件有关,因为您的示例中没有?

答案 1 :(得分:0)

使用AutoResponder,它将是: -

[![regex:(?inx)^http://test\.localhost\.com/accounts/.*/.*notes/page/1][1]][1]

如果主机enter image description here未知,请使用以下情况。

regex:(?inx)^https://.+\/accounts/.*/.*/.*