미디어위키 API 도움말

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

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

action=createaccount

(main | createaccount)
  • 이 모듈은 write 권한을 요구합니다.
  • 이 모듈은 POST 요청만을 허용합니다.
  • 출처: MediaWiki
  • 라이선스: GPL-2.0+

새 사용자 계정을 만듭니다.

변수:
name

사용자 이름

이 변수는 필수 입력 사항입니다.
Type: user name
password

Password (ignored if mailpassword is set).

domain

Domain for external authentication (optional).

token

Account creation token obtained in first request.

email

사용자 이메일 주소 (선택).

realname

사용자 실명 (선택).

mailpassword

If set to any value, a random password will be emailed to the user.

유형: 부울 (자세한 정보)
reason

Optional reason for creating the account to be put in the logs.

language

Language code to set as default for the user (optional, defaults to content language).

captchaword

Answer to the CAPTCHA

captchaid

CAPTCHA ID from previous request

예시:
Create user testuser with password test123.
api.php?action=createaccount&name=testuser&password=test123
Create user testmailuser and email a randomly-generated password.
api.php?action=createaccount&name=testmailuser&mailpassword=true&reason=MyReason