Stay organized with collections
Save and categorize content based on your preferences.
com.google.api.server.spi.config
Interface Authenticator
public interface Authenticator
Interface for Endpoints authenticators. To create a custom authenticator, implement and assign
your authenticator class in the authenticator configuration property.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Hard to understand","hardToUnderstand","thumb-down"],["Incorrect information or sample code","incorrectInformationOrSampleCode","thumb-down"],["Missing the information/samples I need","missingTheInformationSamplesINeed","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2024-02-15 UTC."],[[["The `Authenticator` interface is used for creating custom authentication mechanisms in Endpoints."],["Implementers must define their authenticator class and assign it to the `authenticator` configuration property."],["The core method `authenticate(HttpServletRequest request)` handles user authentication from an HTTP request."],["The `authenticate` method either returns the authenticated `User` or `null` if no authentication is present or successful."],["The `authenticate` method will throw `ServiceException` when appropriate."]]],[]]