I'm trying to normalize an Oauth request into it's signature base string (which asks for percent encoding), and am wondering what the difference is between that and (application/x-www-form-urlencoded). On the wiki page, it says:
[application/x-www-form-urlencoded has] a number of modifications such as newline normalization and replacing spaces with "+" instead of "%20"
I understand the space replacing part, but I'm not sure what the other modifications are. In an Oauth normalization context, would using the java.net.URLEncoder work (since there shouldn't be any spaces anyway)?