To allow your bot to delete articles in your MediaWiki add the following line to your MediaWiki's LocalSettings.php:
$wgEnableWriteAPI = true; $wgGroupPermissions['bot']['delete'] = true;
Delete an article with
String name = ... MediaWikiBot bot = ... Siteinfo si = bot.getSiteinfo(); Userinfo ui = bot.getUserinfo(); bot.performAction(new PostDelete(name, si, ui));@author Max Gensthaler
|
|