위 챗 js 개발 에 errmsg: "config: invalid signature" 오류 가 발생 했 습 니 다.

2547 단어 js
위 챗 js sdk 를 사용 하여 개발 할 때 다음 코드 를 설정 하 는 중 오류 가 발생 했 습 니 다.
설정 코드:
wx.config({
  debug: false,
  appId: '"appId"] %>',
  timestamp: "timestamp"] %>,
  nonceStr: '"nonceStr"] %>',
  signature: '"signature"] %>',
  jsApiList: []
});

오 류 는 다음 과 같 습 니 다:
errMsg: "config:invalid signature"

모든 설정 을 미리 밝 히 는 것 은 문제 가 없습니다.이 잘못 으로 이틀 을 괴 롭 혔 지만 각종 디 버 깅 은 모두 성과 가 없 었 다.마지막 으로 어떤 사람 이 역방향 에이전트 에 문제 가 있다 고 말 하 는 것 을 보 았 습 니 다. 그래서 저 는 nginx 설정 파일 을 고 쳤 습 니 다. 뜻밖에도 좋 았 습 니 다. 구체 적 인 코드 는 다음 과 같 습 니 다.
 server {
        listen       80;
        server_name  test.test.com;

        location / {
            root   html;
            index  index.html index.htm;
            proxy_read_timeout 300;
            proxy_connect_timeout 300;
            proxy_set_header  X-Real-IP  $remote_addr;
            proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
            proxy_set_header Host $http_host;
            proxy_redirect off;
        }

        error_page   500 502 503 504  /50x.html;
        location = /50x.html {
            root   html;
        }
    }

관건 적 인 nginx 설정 코드 는 바로 아래 의 이것 입 니 다 proxy_set_header Host $http_host;
proxy_set_header  X-Real-IP  $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Host $http_host;
proxy_redirect off;

위의 절차 에 따라 nginx 프로필 을 수정 한 후에 문 제 는 바로 해결 되 었 습 니 다.완벽 해!!!!!

좋은 웹페이지 즐겨찾기