Mediawiki: Invalid Edit Token - Stack Overflow most recent 30 from stackoverflow.com2009-12-16T23:49:52Zhttp://stackoverflow.com/feeds/question/1021406http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1021406/mediawiki-invalid-edit-token0Mediawiki: Invalid Edit TokenStefan2009-06-20T10:52:39Z2009-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#10275330Answer by Otterfan for Mediawiki: Invalid Edit TokenOtterfan2009-06-22T14:30:59Z2009-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&title=Talk:River%20Otters
&section=new
&summary=Otters%3F
&text=Anyone%20see%20any%20otters%20lately%3F
&watch
&basetimestamp=2009-06-22T13:52:41ZZ
&token=d96d72fae5e6c43b0b9f63d82ace366%2B%5C
</code></pre>