Stay organized with collections
Save and categorize content based on your preferences.
com.google.api.server.spi.config
Interface PeerAuthenticator
public interface PeerAuthenticator
Peer authenticators aim to verify the peer and run before Authenticator. It returns false
if authentication failed and stops handling the rest of the request; true if authentication
succeeds and continue to execute rest of peer authenticators.
If no peer authenticator is set, EndpointsPeerAuthenticator will be the default to verify
the request is from Google. If you supply your own peer authenticator, make sure you also put
EndpointsPeerAuthenticator to the head of peerAuthenticators list to verify the request
is from Google.
[[["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."],[[["`PeerAuthenticator` is an interface used to verify the peer before the `Authenticator`."],["If peer authentication fails, it returns `false` and halts further request processing."],["If no custom peer authenticator is set, `EndpointsPeerAuthenticator` is used by default to verify that the request is from Google."],["Custom peer authenticators should include `EndpointsPeerAuthenticator` at the beginning of their list to ensure requests from Google are verified."],["The `authenticate` method of the `PeerAuthenticator` interface, which takes an `HttpServletRequest` as a parameter, returns a boolean indicating the success or failure of authentication."]]],[]]