Interface NextAuthFlowResponse.SuccessOrBuilder
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
NextAuthFlowResponse.Success, NextAuthFlowResponse.Success.Builder
- Enclosing class:
NextAuthFlowResponse
public static interface NextAuthFlowResponse.SuccessOrBuilder
extends com.google.protobuf.MessageOrBuilder
-
Method Summary
Modifier and TypeMethodDescriptiongetToken()A JWT (JSON Web Token) for authenticating subsequent API requests.com.google.protobuf.ByteStringA JWT (JSON Web Token) for authenticating subsequent API requests.Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder
isInitializedMethods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
Method Details
-
getToken
String getToken()A JWT (JSON Web Token) for authenticating subsequent API requests. This token should be included in the Authorization header for authenticated endpoints. The token is issued with the "api" audience claim.
string token = 1;- Returns:
- The token.
-
getTokenBytes
com.google.protobuf.ByteString getTokenBytes()A JWT (JSON Web Token) for authenticating subsequent API requests. This token should be included in the Authorization header for authenticated endpoints. The token is issued with the "api" audience claim.
string token = 1;- Returns:
- The bytes for token.
-