Browse Source

Merge branch '84-integrate' into 'develop'

合并



See merge request !63

zhuyapeng 2 years ago
parent
commit
1769b5cd84

+ 1 - 1
smsb-customer-manager-app/src/main/java/com/inspur/customer/service/wechat/WeChatServiceImpl.java

@@ -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();