기술 자료

Development

User Acquisition

Monetization

산업 분야

Authentication for Unreal Engine

Authentication for Unreal Engine

Multiplayer Services for Unreal
​
​
Authentication for Unreal
  • Overview
  • 시작하기
  • Authentication 라이프사이클
  • 플레이어 프로필
  • 플레이어 환경 설정
  • C++를 사용하여 연동
  • 블루프린트를 사용하여 연동
C++ API Reference
  • Authentication API
    • AuthenticationBlueprintApi
    • AuthenticationErrorCodes
    • AuthenticationStates
    • AuthenticationSubsystem
    • Authentication.Models
      • AuthenticationResponse
      • AuthenticationPlayerProfileChangedResponse
      • AuthenticationPlayerProfileDeletedResponse
      • AuthenticationSignInOptions
      • AuthenticationStateChangedResponse
      • AuthenticationUserResponse
  • Services.Core API
  1. Unreal Engine용 Authentication SDK

구조체 AuthenticationResponse

Reference the data structure for authentication service responses.
읽는 시간 1분
최근 업데이트: 8달 전

Unity Authentication 서비스의 API 응답을 미러링합니다.
Include
#include "Models/AuthenticationResponse.h"
구문
USTRUCT(BlueprintType)struct AUTHENTICATION_API FAuthenticationResponse

필드

WasSuccessful

응답이 성공적이었는지 여부입니다.

선언

bool bWasSuccessful = false

블루프린트

이름

유형

기본값

블루프린트 프로퍼티 유형

블루프린트 프로퍼티 카테고리

Was Successful부울
false
BlueprintReadOnlyUnity Gaming ServicesAuthentication

C++

이름

유형

기본값

bWasSuccessful
bool
false

UserId

생성된 사용자 ID입니다.

선언

FString UserId

블루프린트

이름

유형

블루프린트 프로퍼티 유형

블루프린트 프로퍼티 카테고리

사용자 ID문자열BlueprintReadOnlyUnity Gaming ServicesAuthentication

C++

이름

유형

UserId
FString

AccessToken

생성된 인증 액세스 토큰입니다.

선언

FString AccessToken

블루프린트

이름

유형

블루프린트 프로퍼티 유형

블루프린트 프로퍼티 카테고리

Access Token문자열BlueprintReadOnlyUnity Gaming ServicesAuthentication

C++

이름

유형

AccessToken
FString

SessionToken

생성된 인증 세션 토큰입니다. 이 토큰은 사용자를 다시 로그인하는 데 사용할 수 있습니다.

선언

FString SessionToken

블루프린트

이름

유형

블루프린트 프로퍼티 유형

블루프린트 프로퍼티 카테고리

Session Token문자열BlueprintReadOnlyUnity Gaming ServicesAuthentication

C++

이름

유형

SessionToken
FString

AuthorizedTime

응답이 전송된 시간입니다.

선언

FDateTime AuthorizedTime

블루프린트

이름

유형

블루프린트 프로퍼티 유형

블루프린트 프로퍼티 카테고리

Authorized Time날짜 시간 구조체BlueprintReadOnlyUnity Gaming ServicesAuthentication

C++

이름

유형

AuthorizedTime
FDateTime

ExpiresIn

응답이 전송된 시간입니다.

선언

int32 ExpiresIn = 0

블루프린트

이름

유형

기본값

블루프린트 프로퍼티 유형

블루프린트 프로퍼티 카테고리

Expires In정수
0
BlueprintReadOnlyUnity Gaming ServicesAuthentication

C++

이름

유형

기본값

ExpiresIn
int32
0

Copyright © 2026 Unity Technologies
법률 정보개인정보 처리방침쿠키Documentation Terms of Use개인 정보 판매 또는 공유 금지개인정보 보호 선택(쿠키 설정)

'Unity', Unity 로고 및 기타 Unity 상표는 미국 및 기타 지역 내 Unity Technologies 또는 그 계열사의 상표 또는 등록상표입니다(자세한 내용은 여기에서 확인하세요). 기타 명칭 또는 브랜드는 해당 소유자의 상표입니다.

일부 페이지는 편의를 위해 기계 번역되었으며 부정확한 내용이 있을 수 있습니다. 정보가 상충되는 경우, 영어 버전을 우선으로 참조하세요.

  • 보고 있는 페이지
    • Include

    • 구문

    • 필드

      • WasSuccessful

        • 선언

        • 블루프린트

        • C++

      • UserId

        • 선언

        • 블루프린트

        • C++

      • AccessToken

        • 선언

        • 블루프린트

        • C++

      • SessionToken

        • 선언

        • 블루프린트

        • C++

      • AuthorizedTime

        • 선언

        • 블루프린트

        • C++

      • ExpiresIn

        • 선언

        • 블루프린트

        • C++


이 페이지의 문제 보고
​
​