Skip to content

Commit b137cb7

Browse files
committed
check properties
1 parent 1ba8c4a commit b137cb7

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/main/java/com/topcoder/onlinereview/component/jwt/JWTTokenGenerator.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -118,6 +118,10 @@ private String getMachineToken(String clientId, String clientSecret, String audi
118118
postMap.put("grant_type", "client_credentials");
119119
postMap.put("audience", audience);
120120
postMap.put("auth0_url", auth0Url);
121+
LOGGER.info(auth0Url);
122+
LOGGER.info(authServerUrl);
123+
LOGGER.info(auth0ProxyServerUrl);
124+
LOGGER.info(target.getUri().toString());
121125
Response response = target.request(new String[]{"application/json"}).post(Entity.json(postMap));
122126
if (response.getStatusInfo().getStatusCode() != 200) {
123127
LOGGER.error("Unable to get token: {}", response);

0 commit comments

Comments
 (0)