
下面的方法将图像上传到linkedIn
参考:https : //docs.microsoft.com/zh-
cn/linkedin/marketing/integrations/community-management/shares/vector-asset-
api#upload-the-image
private void uploadMedia(String uploadUrl,String accessToken) throws IOException {RestTemplate restTemplate = new RestTemplate();HttpHeaders headers = new HttpHeaders();headers.add("Authorization","Bearer "+accessToken);byte[] fileContents = Files.readAllBytes(new File("path_to_local_file").toPath());HttpEntity<byte[]> entity = new HttpEntity<>(fileContents, headers);restTemplate.exchange(uploadUrl,HttpMethod.PUT, entity, String.class); }欢迎分享,转载请注明来源:内存溢出
微信扫一扫
支付宝扫一扫
评论列表(0条)