미디어위키 API 도움말

이 페이지는 자동으로 생성된 미디어위키 API 도움말 문서입니다.

설명 문서 및 예시: https://www.mediawiki.org/wiki/Special:MyLanguage/API:Main_page

meta=authmanagerinfo (ami)

(main | query | authmanagerinfo)

현재의 인증 상태에 대한 정보를 검색합니다.

변수:
amisecuritysensitiveoperation

Test whether the user's current authentication status is sufficient for the specified security-sensitive operation.

amirequestsfor

Fetch information about the authentication requests needed for the specified authentication action.

다음 값 중 하나: change, create, create-continue, link, link-continue, login, login-continue, remove, unlink 또는 다른 문자열: change, create, create-continue, link, link-continue, login, login-continue, remove, unlink
amimergerequestfields

모든 인증 요청에 대한 필드 정보를 하나의 배열로 합칩니다.

Type: boolean (details)
amimessageformat

반환 메시지에 사용할 형식.

다음 값 중 하나: html, none, raw, wikitext 또는 다른 문자열: html, none, raw, wikitext
기본값: wikitext
예시:
Fetch the requests that may be used when beginning a login.
api.php?action=query&meta=authmanagerinfo&amirequestsfor=login [연습장에서 열기]
Fetch the requests that may be used when beginning a login, with form fields merged.
api.php?action=query&meta=authmanagerinfo&amirequestsfor=login&amimergerequestfields=1 [연습장에서 열기]
Test whether authentication is sufficient for action foo.
api.php?action=query&meta=authmanagerinfo&amisecuritysensitiveoperation=foo [연습장에서 열기]