소스 검색

Merge branch '84-integrate' into 'develop'

合并



See merge request !63

zhuyapeng 2 년 전
부모
커밋
1769b5cd84
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      smsb-customer-manager-app/src/main/java/com/inspur/customer/service/wechat/WeChatServiceImpl.java

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