User
Difference between revisions of "Cewbot"
m (fix) |
m (fix) |
||
Line 1: | Line 1: | ||
To create a bot at Lingua Libre using [https://github.com/kanasimi/wikiapi npm - wikiapi]: | To create a bot at Lingua Libre using [https://github.com/kanasimi/wikiapi npm - wikiapi]: | ||
− | # Create a account at [[commons:Wikimedia Commons|Wikimedia Commons]]. The account | + | # Create a account at [[commons:Wikimedia Commons|Wikimedia Commons]]. The account should includes "bot". |
# Login Lingua Libre with the account, and browser [[Special:BotPasswords]], create a bot password, e.g., "LinguaLibrebot@LinguaLibrebot". | # Login Lingua Libre with the account, and browser [[Special:BotPasswords]], create a bot password, e.g., "LinguaLibrebot@LinguaLibrebot". | ||
# The code for login: | # The code for login: | ||
Line 7: | Line 7: | ||
await wiki.login({ | await wiki.login({ | ||
user_name: "LinguaLibrebot@LinguaLibrebot", | user_name: "LinguaLibrebot@LinguaLibrebot", | ||
− | password: | + | password: 'password', |
− | API_URL: | + | API_URL: 'https://lingualibre.org/api.php' |
}); | }); | ||
</syntaxhighlight> | </syntaxhighlight> |
Revision as of 01:19, 27 April 2021
To create a bot at Lingua Libre using npm - wikiapi:
- Create a account at Wikimedia Commons. The account should includes "bot".
- Login Lingua Libre with the account, and browser Special:BotPasswords, create a bot password, e.g., "LinguaLibrebot@LinguaLibrebot".
- The code for login:
const wiki = new Wikiapi;
await wiki.login({
user_name: "LinguaLibrebot@LinguaLibrebot",
password: 'password',
API_URL: 'https://lingualibre.org/api.php'
});