Xsolla-logo
  • 문서화
  • 계정 생성

사용자 이름과 암호로 인증Client-side

post/login

지정한 사용자 이름/이메일 및 암호로 사용자를 인증합니다.

Request
query Parameters
projectId
required
string <uuid>

게시자 계정의 로그인 프로젝트 ID입니다.

login_url
string

URL to redirect the user to after account confirmation, successful authentication, two-factor authentication configuration, or password reset confirmation. Must be identical to the Callback URL specified in the URL block of Publisher Account. For the scenario of a login error, the value should be identical to the the Error callback URL specified in the URL block of Publisher Account. To find the settings, go to Login > your Login project and select the Callback URLs section in the upper block. Required if there are several Callback URLs.

payload
string

Your custom data. The value of the parameter will be returned in the payload claim of the user JWT. Recommended maximum length less than 500 characters. Note, that this parameter is only available if you use a custom user data storage.

with_logout
string
Default: "0"

기존 사용자 JWT 값을 비활성화하고 이 호출로 생성한 값을 활성화할지 여부를 표시합니다. 사용 가능한 값:

  • '1'은 기존 값을 비활성화하고 새 값을 활성화합니다.
  • '0'은 기존 값을 활성화 상태로 유지합니다.
Request Body schema: application/json
username
required
string

사용자 이름 또는 이메일 주소입니다.

password
required
string

사용자 암호입니다.

remember_me
boolean

사용자가 인증 데이터 저장에 동의하는지 여부입니다. 기본값은 false입니다.

Responses
200

확인

400

잘못된 요청

401

인증되지 않음

404

인증되지 않음

422

처리할 수 없는 엔터티

429

요청이 너무 많음

Request samples
application/json
{
  • "password": "password123",
  • "remember_me": false,
  • "username": "John"
}
Response samples
application/json