Miguel de Icaza
unread,May 23, 2010, 5:52:07 PM5/23/10Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Twitter Development Talk
Hello guys,
Perhaps the most frustrating piece in dealing with the OAuth
configuration is that the twitter OAuth page talks casually about
"urlEncode". You need to "urlEncode this" and "urlEncode that". What
the page does not say is that "urlEncode" is not a standard
urlEncoding system that web developers are used to. The urlEncode
required by OAuth signatures is actually "percent encode" and it is
*required* that you use percent encoding for anything but a small
subset of characters.
The only characters that do not require percent encoding are:
unreserved = a through z, A through Z, 0 through 9 and '-', '.', '_',
'~'
Miguel