Fetch post likes

请用 (https://sns.bj.themez.cc/mobile_api/fetch_likes) API for access fetch post likes endpoint

(Fetch Repost on Post) at the moment this option is not supported by the script core


Get 参数

参数 描述
session_id Access token ID (Optional) 例如: de25cc16eb00960f076...
post_id Liked/Unliked post int ID 例如: 4567
page_size Total records limit for each request Recommended: 20
offset Last post offset ID This is only needed when loading records of the pagination system.

成功响应

{
        "code": 200,
        "message": "Likes fetched successfully",
        "data": [
            {
                "offset_id": 3,
                "id": 7,
                "about": "",
                "followers": 3512,
                "posts": 4050,
                "avatar": "http://colibri.loc/upload/default/avatar.png",
                "last_active": "18 Nov, 20 04:11 PM",
                "username": "@dan_kassing",
                "fname": "Dan",
                "lname": "Kassing",
                "email": "ibragimov.ahmat.tl@gmail.com",
                "verified": "2",
                "name": "Dan Kassing",
                "url": "http://colibri.loc/@dan_kassing",
                "is_following": false,
                "is_user": false
            },
            {...},
            {...},
            {...}
        ]
    }
    

错误响应


    {
        "code": 400,
        "message": "Post id is missing or invalid",
        "data": []
    }

    {
        "code": 404,
        "message": "No data found",
        "data": []
    }