API:Assert/de
![]() | Diese Seite ist Teil der Dokumentation der MediaWiki action API. |
MediaWiki Version: | ≥ 1.23 |
The assert parameter of the Action API can be set on any API request to verify certain conditions before the requested action is executed.
The available options are:
assert=anon
: Check that you are acting as an IP user . This prevents accidental use of a registered account. Seit MediaWiki 1.35 • change 572374assert=user
: Check that you are using a registered account (either "named" or temporary). This prevents accidental fallback to an IP user.assert=bot
: Überprüfen Sie, ob Sie mit einem account mit "bot Rechten eingeloggt sind. This prevents your script from interacting with wikis where your bot does not have the bot flag.assertuser=...
: Check that you are logged-in with the expected user name. Seit MediaWiki 1.28
Note that temporary users satisfy assert=user
, and fail assert=anon
.
Possible errors
Wenn die Prüfung fehlschlägt, wird einer der folgenden Fehlercodes zurückgegeben:
assertanonfailed
assertuserfailed
assertbotfailed
assertnameduserfailed
Rationale and use cases
These parameters are intended as a second line of defense against several kinds of problems:
Bot operator errors
It's easy for a simple operator error to cause a lot of bad edits, such as the bot running on the wrong wiki or under the wrong username, especially if you're running more than one bot task.
The assert=bot
and assertuser=...
parameters are intended to help prevent those mistakes.
Login session expiration
After logging in, the cookies you receive are only valid for 30 days by default, after which time your bot will become logged out, and may continue working with its actions being attributed to the IP address or a temporary username (if logged-out users are allowed to perform them).
The assert=user
parameter is intended to prevent this.
Switching user accounts
Interactive tools (in the browser) using the API to edit often want to make sure the user understands how their work will be attributed.
When the user logs in or out in another browser tab (or their login session expires), this won't be immediately reflected in the tool's interface, but the new login session will be used for saving actions.
The assertuser=...
and assert=anon
parameters are intended to allow detecting this scenario and displaying an appropriate message before continuing.
Prüfen, ob du eingeloggt bist
Wenn Sie überprüfen möchten, ob Ihr HTTP-Client in die Action API eingeloggt ist, ohne weitere Aktionen durchzuführen, können Sie eine Anfrage mit den Parametern action=query&assert=user
senden.
Dies gibt eine leere Antwort ({}
im JSON-Format) zurück, wenn Sie tatsächlich angemeldet sind, oder den Fehler von assertuserfailed
wenn nicht.
Normalerweise müssen Sie keine einzelne Anfrage wie hier machen.
Stattdessen setzen Sie den Parameter assert=user
für jede Ihrer Anfragen ein.