坦然 发表于 2020-6-19 09:20

某心步数999[云函数专用版](实现每日9999)

本帖最后由 坦然 于 2020-6-19 09:22 编辑

缓存文件来自上一个帖子 https://www.52pojie.cn/thread-1202317-1-1.html,在软件运行目录下面有个缓存.data,记事本打开就可以看到。import requests
import json
import time
import datetime

def start():
    #缓存文件的userId
    userId = "缓存文件的userId"
    #缓存文件的token
    token = "缓存文件的token"
    #缓存文件的ck
    ck = "缓存文件的ck"
    step = 9999
    url = "https://sports.lifesense.com/sport_service/sport/sport/uploadMobileStepV2?accesstoken=" + token + "&userId=" + userId + "&appType=6&longitude=360&latitude=360&network_type=wifi&systemType=1&version=4.6.1&osversion=12.3.1&platform=ios&screenwidth=320&screenheight=568&requestId=0ee82a94c139470686968a3f9b4a8089&area=CN&language=zh&openudid=933BFE46-60C7-4869-86EF-93FBF14F5EAD&devicemodel=iPhone%20SE&os_country=CN&os_langs=zh&promotion_channel=app_store&timezone=Asia/Shanghai"

    pyload = {'timestamp': int(round(time.time())), 'list': [{'calories': '0', 'created': datetime.datetime.now().strftime('%Y-%m-%d %H:%M:%S'), 'dataSource': '3',
                                          'deviceId': 'M_FE37336EBAD9788C46D99ACBA06A33CD923189CA', 'distance': '0',
                                          'id': '4610b81308c05444f93b8ce5ccd1ca026fd',
                                          'measurementTime': datetime.datetime.now().strftime('%Y-%m-%d %H:%M:%S'), 'priority': '0', 'step': step,
                                          'type': '0', 'userId': userId}]}
    headers = {
      "Content-Type": "application/json; charset=UTF-8",
      "Cookie": ck
    }
    response = requests.post(url, data=json.dumps(pyload), headers=headers).text
    print(response)
    result = json.loads(response)
    print(result["msg"])
    return result["msg"];


def main_handler(event, context):
    return start()


if __name__ == '__main__':
    start();

使用方法:
1.打开https://console.cloud.tencent.com/scf/list?rid=8&ns=default
2.新建函数,函数名称随便输入,语言选择python3.6,创建方式选择空白模板
3.把代码粘贴进去,改下自己的userId,token,ck
4.然后保存测试下,看下输出结果是否成功及步数是否同步
5.触发管理创建触发器,不会cron的可以选择默认即可。
成功截图为

PS:
1.该函数没有实现ck失效通知的功能(如果有需要自行对接下server酱)
2.云函数运行期间,千万不要手机再登录app。否则ck就会立马失效的。

lthotel 发表于 2020-7-25 14:10

yxwd 发表于 2020-7-22 08:56
楼主的代码里,有个关键字段填写需要调一下,type楼主填写是0,你调整为type 2
"step": step, "type":...

哥们还是不行啊,你有代码吗,能发给我吗哈哈每天该很麻烦啊

lthotel 发表于 2020-7-16 11:09

yxwd 发表于 2020-7-16 09:53
import random

url = 'https://*****/uploadMobileStepV2'
step= random.randint(9000,9999)

我按以上不行啊。2行代码,第一个是通知。第二个是随机步数。是不是放的位置不对啊。能给说一下吗,我是小白。我的步数天天9999有点假啊

lengwangye 发表于 2020-6-19 10:07

这个不能突破2w,咕咚接口可以突破2w,可以出一个吗

坦然 发表于 2020-6-19 10:26

lengwangye 发表于 2020-6-19 10:07
这个不能突破2w,咕咚接口可以突破2w,可以出一个吗

接口在哪

huansheng 发表于 2020-6-19 10:47

腾讯说我太难了{:301_1003:}

15625626826 发表于 2020-6-19 15:30

能不能突破9999{:1_907:}

dokuro 发表于 2020-6-19 18:59

加个收藏,持续关注~

凌乱的思绪 发表于 2020-6-20 00:42

谢谢楼主分享了。

anandyuan 发表于 2020-6-20 09:33

本帖最后由 anandyuan 于 2020-6-20 09:37 编辑

谢谢楼主,真好{:301_997:}

吾爱蛋蛋 发表于 2020-6-20 15:29

不能突破两万吗

信誓、 发表于 2020-6-20 21:01

怎么改自己的userId,token,ck??求大神!
页: [1] 2 3 4 5 6
查看完整版本: 某心步数999[云函数专用版](实现每日9999)