I ran into this POST form example, which sends some application/x-www-form-urlencoded. data:
curl http://127.0.0.1:3000/bla -X POST --data 'x%3D1'
Should a server interpret that as a form name value pair "x=1" or as "x%3D1=[empty]"? Can you escape the equals sign in the encoding?