api.py 741 B

123456789101112131415161718192021222324252627282930313233343536
  1. #!/usr/bin/env python
  2. # -*- encoding: utf-8 -*-
  3. '''
  4. @Contact : liuyuqi.gov@msn.cn
  5. @Time : 2023/03/22 19:35:52
  6. @License : Copyright © 2017-2022 liuyuqi. All Rights Reserved.
  7. @Desc :
  8. '''
  9. # 手机验证码接口
  10. phone_host=r""
  11. get_phone=r"/getphone"
  12. get_message=r"/getmessage"
  13. # 验证 mail 接口
  14. mail_host=r""
  15. get_mail=r"/getmail"
  16. get_mail_content=r"/getmailcontent"
  17. # proxy
  18. proxy_host_ihuan = r"https://ip.ihuan.me"
  19. # for outlook
  20. live_host='https://signup.live.com/signup'
  21. # for 163mail
  22. mail_163_host='https://mail.163.com/'
  23. # for qqmail
  24. qq_host='https://mail.qq.com/cgi-bin/loginpage'
  25. # for gmail
  26. gmail_host='https://accounts.google.com/signup/v2/webcreateaccount?hl=zh-CN&flowName=GlifWebSignIn&flowEntry=SignUp'