|
|
@@ -33,7 +33,7 @@ public class WeChatServiceImpl implements IWeChatService {
|
|
|
public String queryTicket(String appKey, String userId, String authorization) {
|
|
|
String url = String.format(HttpUrlConstant.QUERY_TICKET.replace("MSR_IDMS_TOP", MSR_IDMS_TOP), userId, appKey);
|
|
|
HttpHeaders header = new HttpHeaders();
|
|
|
- header.add("Authorization", authorization);
|
|
|
+ // header.add("Authorization", authorization);
|
|
|
ResponseEntity<String> response = restTemplate.exchange(url, HttpMethod.GET, new HttpEntity<String>(header), String.class);
|
|
|
log.info("获取二维码url: {}", url);
|
|
|
return response.getBody();
|