spring security OAuth2ParameterNames 源码
spring security OAuth2ParameterNames 代码
文件路径:/oauth2/oauth2-core/src/main/java/org/springframework/security/oauth2/core/endpoint/OAuth2ParameterNames.java
/*
* Copyright 2002-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.springframework.security.oauth2.core.endpoint;
/**
* Standard and custom (non-standard) parameter names defined in the OAuth Parameters
* Registry and used by the authorization endpoint, token endpoint and token revocation
* endpoint.
*
* @author Joe Grandja
* @since 5.0
* @see <a target="_blank" href="https://tools.ietf.org/html/rfc6749#section-11.2">11.2
* OAuth Parameters Registry</a>
*/
public final class OAuth2ParameterNames {
/**
* {@code grant_type} - used in Access Token Request.
*/
public static final String GRANT_TYPE = "grant_type";
/**
* {@code response_type} - used in Authorization Request.
*/
public static final String RESPONSE_TYPE = "response_type";
/**
* {@code client_id} - used in Authorization Request and Access Token Request.
*/
public static final String CLIENT_ID = "client_id";
/**
* {@code client_secret} - used in Access Token Request.
*/
public static final String CLIENT_SECRET = "client_secret";
/**
* {@code client_assertion_type} - used in Access Token Request.
* @since 5.5
*/
public static final String CLIENT_ASSERTION_TYPE = "client_assertion_type";
/**
* {@code client_assertion} - used in Access Token Request.
* @since 5.5
*/
public static final String CLIENT_ASSERTION = "client_assertion";
/**
* {@code assertion} - used in Access Token Request.
* @since 5.5
*/
public static final String ASSERTION = "assertion";
/**
* {@code redirect_uri} - used in Authorization Request and Access Token Request.
*/
public static final String REDIRECT_URI = "redirect_uri";
/**
* {@code scope} - used in Authorization Request, Authorization Response, Access Token
* Request and Access Token Response.
*/
public static final String SCOPE = "scope";
/**
* {@code state} - used in Authorization Request and Authorization Response.
*/
public static final String STATE = "state";
/**
* {@code code} - used in Authorization Response and Access Token Request.
*/
public static final String CODE = "code";
/**
* {@code access_token} - used in Authorization Response and Access Token Response.
*/
public static final String ACCESS_TOKEN = "access_token";
/**
* {@code token_type} - used in Authorization Response and Access Token Response.
*/
public static final String TOKEN_TYPE = "token_type";
/**
* {@code expires_in} - used in Authorization Response and Access Token Response.
*/
public static final String EXPIRES_IN = "expires_in";
/**
* {@code refresh_token} - used in Access Token Request and Access Token Response.
*/
public static final String REFRESH_TOKEN = "refresh_token";
/**
* {@code username} - used in Access Token Request.
*/
public static final String USERNAME = "username";
/**
* {@code password} - used in Access Token Request.
*/
public static final String PASSWORD = "password";
/**
* {@code error} - used in Authorization Response and Access Token Response.
*/
public static final String ERROR = "error";
/**
* {@code error_description} - used in Authorization Response and Access Token
* Response.
*/
public static final String ERROR_DESCRIPTION = "error_description";
/**
* {@code error_uri} - used in Authorization Response and Access Token Response.
*/
public static final String ERROR_URI = "error_uri";
/**
* Non-standard parameter (used internally).
*/
public static final String REGISTRATION_ID = "registration_id";
/**
* {@code token} - used in Token Revocation Request.
* @since 5.5
*/
public static final String TOKEN = "token";
/**
* {@code token_type_hint} - used in Token Revocation Request.
* @since 5.5
*/
public static final String TOKEN_TYPE_HINT = "token_type_hint";
private OAuth2ParameterNames() {
}
}
相关信息
相关文章
spring security DefaultMapOAuth2AccessTokenResponseConverter 源码
spring security DefaultOAuth2AccessTokenResponseMapConverter 源码
spring security OAuth2AccessTokenResponse 源码
spring security OAuth2AuthorizationExchange 源码
spring security OAuth2AuthorizationRequest 源码
spring security OAuth2AuthorizationResponse 源码
spring security OAuth2AuthorizationResponseType 源码
0
赞
热门推荐
-
2、 - 优质文章
-
3、 gate.io
-
8、 golang
-
9、 openharmony
-
10、 Vue中input框自动聚焦