Mediawiki: Invalid Edit Token - Stack Overflow most recent 30 from stackoverflow.com 2009-12-16T23:49:52Z http://stackoverflow.com/feeds/question/1021406 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1021406/mediawiki-invalid-edit-token 0 Mediawiki: Invalid Edit Token Stefan 2009-06-20T10:52:39Z 2009-09-07T22:00:01Z <p>Hello,</p> <p>I use the API with HTTP POST to create a wiki page in a Mediawiki (1.14):</p> <ol> <li>I require an edit token </li> <li>It works, I get a fresh token (example: d96d72fae5e6c43b0b9f63d82ace366)</li> <li>I send the HTTP POST for creating a new site with my new token (sth. similar to "d96d72fae5e6c43b0b9f63d82ace366+\"</li> <li>I get an error message <strong>"Invalid Token"</strong></li> </ol> <p>I don't understand why I get this message, because I send a freshly created token in my POST request.</p> <p>Any idea?</p> http://stackoverflow.com/questions/1021406/mediawiki-invalid-edit-token/1027533#1027533 0 Answer by Otterfan for Mediawiki: Invalid Edit Token Otterfan 2009-06-22T14:30:59Z 2009-06-22T14:30:59Z <p>Did you URL-encode the terminating characters of your token? You have to convert the <code>+\</code> to <code>%2B%5C</code>. Your POST request should look something like (minus the line breaks):</p> <pre><code>action=edit&amp;title=Talk:River%20Otters &amp;section=new &amp;summary=Otters%3F &amp;text=Anyone%20see%20any%20otters%20lately%3F &amp;watch &amp;basetimestamp=2009-06-22T13:52:41ZZ &amp;token=d96d72fae5e6c43b0b9f63d82ace366%2B%5C </code></pre>