escape the + + possibly and leave the \ alone
On Fri, Jun 15, 2012 at 11:12 AM, Suryajith Chillara < suryajith1987@gmail.com> wrote:
You're probably double-encoding the token here, I'll bet that whatever
library you're using will transmit this as "a25a....c2%252B%252C". So try using a literal +\ in the token parameter and let the library handle the escaping for you.
Roan, thanks for the reply. This is what I've observed when I printed $_POST variable.
- When I let the token be sent as +, the post parameters were
Array ( [action] => upload [url] => http://www.google.com/intl/en_**ALL/images/logo.gifhttp://www.google.com/intl/en_ALL/images/logo.gif [token] => a25a10589a377fc4d75e5e0dcfb209**c2 \ [format] => json )
- When I encode +\ and send the token, the post parameters were
Array ( [action] => upload [url] => http://www.google.com/intl/en_**ALL/images/logo.gifhttp://www.google.com/intl/en_ALL/images/logo.gif [token] => a25a10589a377fc4d75e5e0dcfb209**c2+\ [format] => json )
Thus, I started using them. This was just a curl call made through php.
Thanks,
-- Regards, Suryajith Chillara.
______________________________**_________________ Mediawiki-api mailing list Mediawiki-api@lists.wikimedia.**org Mediawiki-api@lists.wikimedia.org https://lists.wikimedia.org/**mailman/listinfo/mediawiki-apihttps://lists.wikimedia.org/mailman/listinfo/mediawiki-api