当前位置:   article > 正文

快手手机号登陆_快手手机号授权登录代码是什么

快手手机号授权登录代码是什么

手机号验证码登陆:

1. 发送验证码接口 (requestMobileCode):

 https://id.kuaishou.com/pass/kuaishou/sms/requestMobileCode
  • 1

在这里插入图片描述

参数:
  • 1

在这里插入图片描述
直接curl生成python代码去测试一下:

# -*- coding: utf-8 -*-
# @Author  : Codeooo
# @Time    : 2021/10/11



import requests



headers = {
    'Connection': 'keep-alive',
    'Pragma': 'no-cache',
    'Cache-Control': 'no-cache',
    'sec-ch-ua': '"Chromium";v="92", " Not A;Brand";v="99", "Google Chrome";v="92"',
    'sec-ch-ua-mobile': '?0',
    'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36',
    'Content-type': 'application/x-www-form-urlencoded',
    'Accept': '*/*',
    'Origin': 'https://www.kuaishou.com',
    'Sec-Fetch-Site': 'same-site',
    'Sec-Fetch-Mode': 'cors',
    'Sec-Fetch-Dest': 'empty',
    'Referer': 'https://www.kuaishou.com/',
    'Accept-Language': 'zh-CN,zh;q=0.9',
}

data = {
  'sid': 'kuaishou.server.web',
  'type': '53',
  'countryCode': '+86',
  'phone': '18888888888',
  'account': '',
  'ztIdentityVerificationType': '',
  'ztIdentityVerificationCheckToken': ''
}

response = requests.post('https://id.kuaishou.com/pass/kuaishou/sms/requestMobileCode', headers=headers, data=data)
print(response.text)
print(response.status_code)


  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42

接下来我们看下提交验证码,login的包:

登录包mobileCode:
https://id.kuaishou.com/pass/kuaishou/login/mobileCode
在这里插入图片描述

参数:
countryCode: +86
phone: 18888888888
sid: kuaishou.server.web
createId: true
smsCode: 820644
在这里插入图片描述

response 请求结果:

包含userId,passToken,kuaishou.server.web_st,kuaishou.server.web.at 等,后续几章会说明这几个值得用法。

在这里插入图片描述
继续生成python代码测试一下:

# -*- coding: utf-8 -*-
# @Author  : Codeooo
# @Time    : 2021/10/11




import requests


headers = {
    'Connection': 'keep-alive',
    'Pragma': 'no-cache',
    'Cache-Control': 'no-cache',
    'sec-ch-ua': '"Chromium";v="92", " Not A;Brand";v="99", "Google Chrome";v="92"',
    'sec-ch-ua-mobile': '?0',
    'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36',
    'Content-type': 'application/x-www-form-urlencoded',
    'Accept': '*/*',
    'Origin': 'https://www.kuaishou.com',
    'Sec-Fetch-Site': 'same-site',
    'Sec-Fetch-Mode': 'cors',
    'Sec-Fetch-Dest': 'empty',
    'Referer': 'https://www.kuaishou.com/',
    'Accept-Language': 'zh-CN,zh;q=0.9',
}

data = {
  'countryCode': '+86',
  'phone': '18888888888',
  'sid': 'kuaishou.server.web',
  'createId': 'true',
  'smsCode': '634709'
}

response = requests.post('https://id.kuaishou.com/pass/kuaishou/login/mobileCode', headers=headers, data=data)
print(response.text)
print(response.status_code)
print(response.cookies.get_dict())


  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41

在这里插入图片描述

did, userId,passToken,kuaishou.server.web_st 等后续需要提交的参数全部生成了。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/秋刀鱼在做梦/article/detail/1020144
推荐阅读
相关标签
  

闽ICP备14008679号