Closed KevCaz closed 2 years ago
👋🏽 @KevCaz - Thanks for this!
I'll take a look and get back at you.
FYI, I need to push a version to cran by end of next week to fix some major errors on cran for vcr reverse dependenciess, so this may or may not make it into that submission.
Looks great, merging. Thanks so much for taking the time do a PR!
Hi @sckott,
Hope you're doing well!
This is a proposition to fix #240. The reason of the mismatch is that the request matchers are not accounting for potential escaping of special character and
httr
actually applies such escaping on URI parameters:So to account for this, I use
`curl::curl_unescape()
in the request matchers for URI and query, I also added unit tests for this,Let me know what do you think!