I have a custom connector I built that has a sort_token field that I can use to paginate through large collections of data. But I've run into a problem, which is that the sort_token occasionally includes percent signs, and Flow seems to be url-encoding the token, which changes every instance of '%' to '%25'. And of course the call fails.
Here's a photo of a test demonstrating this behavior. As you can see, the sort token has two percent signs towards the end. If you look at the request URL that was actually sent, they have both been changed to %25.
Any way around this?
Hi @Jronash ,
I have made a test on my side , the issue is caused by HTML encoding and I haven't find a solution for it currrently.
Best regards,
Alice
Community Support Team _ Alice Zhang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Thank you, Alice. Should I report this as a bug somewhere?
Hey @Jronash