App Engine v1 API - Enum LoginRequirement (2.3.0)

public enum LoginRequirement

Reference documentation and code samples for the App Engine v1 API enum LoginRequirement.

Methods to restrict access to a URL based on login status.

Namespace

Google.Cloud.AppEngine.V1

Assembly

Google.Cloud.AppEngine.V1.dll

Fields

NameDescription
LoginAdmin

If the user is not signed in, the auth_fail_action is taken. In addition, if the user is not an administrator for the application, they are given an error message regardless of auth_fail_action. If the user is an administrator, the handler proceeds.

LoginOptional

Does not require that the user is signed in.

LoginRequired

If the user has signed in, the handler proceeds normally. Otherwise, the auth_fail_action is taken.

LoginUnspecified

Not specified. LOGIN_OPTIONAL is assumed.