We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e0d8862 commit d766aa6Copy full SHA for d766aa6
endpoints-framework/src/main/java/com/google/api/server/spi/auth/GoogleAuth.java
@@ -69,7 +69,7 @@ public class GoogleAuth {
69
static final List<String> SKIP_CLIENT_ID_CHECK_LIST =
70
ImmutableList.of(Constant.SKIP_CLIENT_ID_CHECK);
71
72
- static String getAuthToken(HttpServletRequest request) {
+ public static String getAuthToken(HttpServletRequest request) {
73
if (request.getAttribute(Attribute.AUTH_TOKEN) == null) {
74
String token = getAuthTokenFromHeader(request.getHeader(AUTHORIZATION_HEADER));
75
if (token == null) {
0 commit comments