hi Arthur
Thanks
we would use HTTP v1 API and when we mint access token we got one question:
with refer to guideline ,we can find below java code to get access token by json file with Google library support,however we don't know what's the mean of the field SCOPES and where we can get, could you advise?
private static String getAccessToken() throws IOException {
GoogleCredentials googleCredentials = GoogleCredentials
.fromStream(new FileInputStream("service-account.json"))
.createScoped(Arrays.asList(SCOPES));
googleCredentials.refreshAccessToken();
return googleCredentials.getAccessToken().getTokenValue();
}