Pomoc API MediaWiki
To jest automatycznie wygenerowana strona dokumentacji API MediaWiki.
Dokumentacja i przykłady: https://www.mediawiki.org/wiki/Special:MyLanguage/API:Main_page
command=createentry
(main | readinglists | createentry)
- Ten moduł jest wewnętrzny lub niestabilny. Jego działanie może się zmienić bez uprzedzenia.
- Ten moduł wymaga praw odczytu.
- Ten moduł wymaga praw zapisu.
- Ten moduł akceptuje tylko żądania POST.
- Źródło: ReadingLists
- Licencja: GPL-2.0-or-later
Add a new page to a list belonging to the current user.
List entries must be unique. Pages are not limited to the wiki where the API is accessed. The user must have fewer than 5000 (non-deleted) entries in the list.
Parametry:
Other general parameters are available.
- list
List ID.
- Ten parametr jest wymagany.
- Typ: liczba całkowita
- project
Project name of the wiki hosting the page. (Typically this is the domain name of the wiki.) Required unless doing batch creation.
- Nie może być dłuższa niż 255 bajtów.
- title
Tyruł strony.
- Nie może być dłuższa niż 383 bajty.
- batch
Batch data for creating multiple list entries (in the same list) in a single request, in the form of a JSON array with one or more objects with project and title fields.
Przykłady:
- Add the page Dog from project en.wikipedia.org to the list with ID 33.
- api.php?action=readinglists&command=createentry&list=33&project=https%3A%2F%2Fen.wikipedia.org&title=Dog&token=123ABC [otwórz w brudnopisie]
- Add multiple pages to a list.
- api.php?action=readinglists&command=createentry&list=33&batch=%5B%7B%22project%22%3A%22https%3A%5C%2F%5C%2Fen.wikipedia.org%22%2C%22title%22%3A%22Dog%22%7D%2C%7B%22project%22%3A%22https%3A%5C%2F%5C%2Fen.wikipedia.org%22%2C%22title%22%3A%22Cat%22%7D%5D&token=123ABC [otwórz w brudnopisie]