Open strarsis opened 8 years ago
Just manually change the get url to a regular expression. E.g. from:
GET /endpoint?access_token=ASD123456
to:
GET REGEXP /\/endpoint\?access_token=[^&]+/
This way replay will match the url no matter the token, but it will still fail if the token is missing to empty
Github API requests can contain access_token parameter which value got sensitive data. I could remove or overwrite its value, however, then replay wouldn't get a hit for the request anymore as it checks for this parameter, too. How can I let replay ignore this parameter?