|
我获取Token 都可以获取到
String resp = httpClient.post("https://open.youzan.com/oauth/token", params);
if (StringUtils.isBlank(resp) || !resp.contains("access_token")) {
throw new RuntimeException(resp);
}
return JsonUtils.toBean(resp, new TypeReference<OAuthToken>() {
});
resp 可以拿到返回值
但是进入下面的 jsonUtiles 就有问题了 |
|
|
|
|
|
|