소스 검색

feat: verify server when receive message in wechatmp

develop
lanvent 1 년 전
부모
커밋
b5df6faadf
2개의 변경된 파일2개의 추가작업 그리고 0개의 파일을 삭제
  1. +1
    -0
      channel/wechatmp/active_reply.py
  2. +1
    -0
      channel/wechatmp/passive_reply.py

+ 1
- 0
channel/wechatmp/active_reply.py 파일 보기

@@ -21,6 +21,7 @@ class Query:
# Make sure to return the instance that first created, @singleton will do that.
channel = WechatMPChannel()
try:
verify_server(web.input())
message = web.data() # todo crypto
# logger.debug("[wechatmp] Receive request:\n" + webData.decode("utf-8"))
msg = parse_message(message)


+ 1
- 0
channel/wechatmp/passive_reply.py 파일 보기

@@ -20,6 +20,7 @@ class Query:

def POST(self):
try:
verify_server(web.input())
request_time = time.time()
channel = WechatMPChannel()
message = web.data() # todo crypto


Loading…
취소
저장