[当我将从linkedin获得的访问令牌传递给LinkedinTempelate时,我遇到了以下错误
org.springframework.web.client.HttpClientErrorException$Gone: 410 Gone: [no body]
今年春季社交LinkedinTempelate是否正在工作,或者我在某处出错?下面是代码
public LinkedInProfileFull getLinkedInUserProfile(String accessToken) {
LinkedIn linkedIn = new LinkedInTemplate(accessToken);
LinkedInProfileFull linkedInProfilefull = linkedIn.profileOperations().getUserProfileFull();
return linkedInProfilefull;
}