I've created an Azure C# HTTP triggered function with a route url: subscriptions/{token}/t
. It works fine for urls such as subscriptions/blah/t
but it fails with a 404
for parameters that contain encoded slashes: subscriptions/blah%2fblah/t
. Any way around this ?
Before we get into debates, {token}
is a URL encoded Base64 string which will naturally contain slashes.