3

Is there a way for Fiddler to match an autoresponse for the following URL so it will match ANY wildcard value in the middle of a URL?

http://test.localhost.com/accounts/{wildcard}/notes/page/1

4

2 回答 2

9

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

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

或者可能

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

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

注意:您的问题标题提到了“查询参数”,但问题的文本似乎与 URL 的“路径”部分有关,因为?您的示例中没有。

于 2014-01-30T22:15:34.590 回答
0

使用 AutoResponder,它将是:-

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

在此处输入图像描述当主机也不知道时,使用以下情况。

regex:(?inx)^https://.+\/accounts/.*/.*/.*
于 2017-09-20T18:46:11.570 回答