My scenario is for my signature validation on my a...
# ktor
f
My scenario is for my signature validation on my auth provider I need the "raw" string. And in my actual code I need it parsed as form parameters (using receiveParameters)
c
Currently you can't receive the payload twice since it get's consumed. It is planned to support it partially but not yet implemented. So the only you can do is to receive it early in the call pipeline and put into a call's attribute and use it later
f
hmm and is there any simple util that can parse a string to
Parameters
for example?