import org.springframework.web.client.RestTemplate;二、实现
String url = String.format("https://%s", authorizationlink);
System.out.println("导出链接为:" + url);
Response response = restTemplate.postForObject(url, "", Response.class);
1.restTemplate.postForObject(url, "", Response.class);
第一个参数为访问的url
第二个为访问的URL所需头部信息(如没有可不填)
第三个为返回参数



