**结束。**此问题需要详细的调试信息。它目前不接受答案。
**想改进这个问题吗?**更新问题,使其成为堆栈溢出的主题。
5天前关门了。
改进这个问题
我正在尝试从linkedin api获取所有标题和行业。这是从linkedin获取所有标题列表的apihttps://api.linkedin.com/v2/titles 和行业-获取https://api.linkedin.com/v2/industries 如何得到这两份名单我对此一无所知。
任何人都知道如何获得访问linkedin这些api的权限。
我已传递oauth 2访问令牌,但-错误
403 Forbidden: [{"serviceErrorCode":100,"message":"Not enough permissions to access: GET /industries","status":403}]
代码
String url = "https://api.linkedin.com/v2/industries";
HttpHeaders headers = new HttpHeaders();
headers.add("Authorization", "Bearer " + token);
response = restTemplate.exchange(url, HttpMethod.GET, request, String.class);
ObjectMapper mapper = new ObjectMapper();
JsonNode node = mapper.readTree(response.getBody());
System.out.println("json "+node);
暂无答案!
目前还没有任何答案,快来回答吧!