Here are test cases for OAuth algorithms.
Parameter Encoding (section 5.1)
The notation U+xxxx means the character whose Unicode is xxxx, in hexadecimal notation.
parameter name or value | encoded |
abcABC123 | abcABC123 |
-._~ | -._~ |
% | %25 |
&=* | %26%3D%2A |
U+000A | %0A |
U+0020 (space) | %20 |
U+007F | %7F |
U+0080 | %C2%80 |
U+3001 | %E3%80%81 |
Signatures
Comments (0)
You don't have permission to comment on this page.