참고: Python 2.7은 2024년 1월 31일 지원 종료됩니다. 기존 Python 2.7 애플리케이션을 계속 실행하고 트래픽을 받을 수 있습니다. 그러나 지원 종료 날짜 이후에는 해당 런타임을 사용하는 애플리케이션의 재배포를 App Engine에서 차단할 수 있습니다.
지원되는 최신 Python 버전으로 마이그레이션하는 것이 좋습니다.
유효한 Google 계정에 해당하지 않는 이메일 주소로 User 생성자를 호출하는 경우 객체는 생성되지만 실제 Google 계정에 상응하지 않게 됩니다.
객체가 저장된 이후에 누군가가 해당 이메일 주소로 Google 계정을 만드는 경우에도 마찬가지입니다. 생성 당시 Google 계정을 나타내지 않는 이메일 주소를 사용하는 User 값은 절대로 실제 사용자를 나타내는 User 값과 일치하지 않습니다.
개발용 웹 서버에서 실행할 때 모든 User 객체는 (시뮬레이션된) 데이터 저장소에 저장될 때 유효한 Google 계정을 나타내는 것으로 간주됩니다.
유효한 사용자의 User 객체는 사용자의 고유 ID 값을 제공할 수 있습니다. 이 값은 사용자가 이메일 주소를 변경해도 그대로 유지됩니다. user_id() 메서드는 이 ID인 str 값을 반환합니다.
User 객체는 앱에 사용되는 인증 방법에 관계없이 형태가 동일합니다.
Datastore에서 사용자 값 사용
사용자 ID는 안정적이어서 키 이름 또는 문자열 속성으로 사용할 수 있습니다.
따라서 사용자 값을 사용할 때 사용자 ID 및 이메일로 통신할 수 있도록 마지막으로 본 이메일 주소를 저장해야 합니다. 아래 예시는 현재 사용자와 사용자 ID를 비교하는 방법입니다.
UserProperty에는 사용자의 고유 ID와 함께 이메일 주소가 포함되어 있으므로 이를 저장하지 않는 것이 좋습니다. 사용자가 자신의 이메일 주소를 변경하고 이전에 저장한 User 값과 새 User 값을 비교하면 서로 일치하지 않게 됩니다. 대신 User사용자 ID 값을 사용자의 안정적인 고유 식별자로 사용해 보세요.
[[["이해하기 쉬움","easyToUnderstand","thumb-up"],["문제가 해결됨","solvedMyProblem","thumb-up"],["기타","otherUp","thumb-up"]],[["이해하기 어려움","hardToUnderstand","thumb-down"],["잘못된 정보 또는 샘플 코드","incorrectInformationOrSampleCode","thumb-down"],["필요한 정보/샘플이 없음","missingTheInformationSamplesINeed","thumb-down"],["번역 문제","translationIssue","thumb-down"],["기타","otherDown","thumb-down"]],["최종 업데이트: 2025-03-26(UTC)"],[[["The `User` class represents a user and provides unique, comparable instances, where equal instances represent the same user."],["The `users.get_current_user()` function retrieves the `User` instance for the currently authenticated user, regardless of the authentication method."],["`User` instances can be created using an email address or a federated identity, but those created from invalid Google accounts will not match real user accounts."],["The `user_id()` method returns a stable, unique string identifier for a user that persists even if the user changes their email."],["It is recommended to store the `user_id` for user identification in the datastore instead of a `UserProperty` because email addresses may change."]]],[]]