Fiddler "Request body is encoded" #1524
-
Hi all! 👋 I'm working on troubleshooting an issue with a testing framework. I've narrowed it down and identified that there's some sort of strange interaction between Refit and the microservice under test. Unfortunately, because so much of this application is work-related, I can't give many specific details without risking my job, so I have to stay pretty vague. I've been monitoring my network traffic with Fiddler, and I've noticed something that's unique to Fiddler, that doesn't occur when I make requests with any other kind of Does anyone have some idea of what this tag means? Is there something that I can configure with my Refit client to not encode request bodies in this way? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Of course, after struggling with this for weeks, the moment I decide to finally ask, I find a thread that solves my problem: #1242 After setting |
Beta Was this translation helpful? Give feedback.
Of course, after struggling with this for weeks, the moment I decide to finally ask, I find a thread that solves my problem: #1242
After setting
[Body(buffered: true)]
on the request body in question, everything works perfectly. The requests take somewhat longer to resolve, so I definitely want to investigate that, but I'll take a slow run over runs that randomly fail.