您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

43 行
1.4KB

  1. from config import conf
  2. import hashlib
  3. import textwrap
  4. class WeChatAPIException(Exception):
  5. pass
  6. def verify_server(data):
  7. try:
  8. if len(data) == 0:
  9. return "None"
  10. signature = data.signature
  11. timestamp = data.timestamp
  12. nonce = data.nonce
  13. echostr = data.echostr
  14. token = conf().get('wechatmp_token') #请按照公众平台官网\基本配置中信息填写
  15. data_list = [token, timestamp, nonce]
  16. data_list.sort()
  17. sha1 = hashlib.sha1()
  18. # map(sha1.update, data_list) #python2
  19. sha1.update("".join(data_list).encode('utf-8'))
  20. hashcode = sha1.hexdigest()
  21. print("handle/GET func: hashcode, signature: ", hashcode, signature)
  22. if hashcode == signature:
  23. return echostr
  24. else:
  25. return ""
  26. except Exception as Argument:
  27. return Argument
  28. def subscribe_msg():
  29. msg = textwrap.dedent("""\
  30. 感谢您的关注!
  31. 这里是ChatGPT,可以自由对话。
  32. 资源有限,回复较慢,请勿着急。
  33. 支持通用表情输入。
  34. 暂时不支持图片输入。
  35. 支持图片输出,画字开头的问题将回复图片或链接。
  36. 支持角色扮演和文字冒险两种定制模式对话。
  37. 输入'#帮助' 查看详细指令。""")
  38. return msg