
 Terry Woody - 2020-04-16 15:20:17
Hey, nice little class!
I have created a demo and not getting results back. Just a blank page. My demo is simple:
require_once('wikibot.class.php');
$bot_config = [
    'url'=>'https://en.wikipedia.org',
    'username'=>'myusernmae',
    'password'=>'mypassword'
];
$bot = new lm_wiki_bot($bot_config);
 $bot->search([
        'offset'=>10,
        'limit'=>10,
        'sort'=>'last_edit_desc',
        'keyword'=>'cellular'
        ]);
Maybe you could create a simple demo.php (leaving usersname/pass blank of course) and show how script works?
I cannot figure out how to get the content, reason for blank page?
Thanks for sharing your class.