发现板块下的“附近的人”功能对接

    用户进入附近的人,必须是获取到当前的位置信息权限才行,否则无法访问这个功能

    对应接口:
    /api/users.nearby?filter[location]=116.397469,39.908821

    返回数据:

    1. {
    2. "Code": 0,
    3. "Message": "接口调用成功",
    4. "Data": {
    5. "pageData": [
    6. {
    7. "id": 1,
    8. "username": "admin", // 用户名
    9. "mobile": "",
    10. "signature": "", // 用户签名
    11. "avatarUrl": "", // 头像
    12. "threadCount": 2,
    13. "registerIp": "127.0.0.1",
    14. "lastLoginIp": "112.49.184.40",
    15. "distance": 0 // 距离
    16. },
    17. {
    18. "id": 2,
    19. "username": "binlee",
    20. "mobile": "",
    21. "signature": "",
    22. "avatarUrl": "000/00/00/02.png",
    23. "threadCount": 5,
    24. "registerIp": "112.49.184.86",
    25. "lastLoginIp": "112.49.185.30",
    26. "distance": 0
    27. }
    28. ],
    29. "currentPage": 1,
    30. "perPage": 20,
    31. "firstPageUrl": "https://demo.qkaifa.com/api/users.nearby?filter[location]=116.397469,39.908821&page=1",
    32. "nextPageUrl": "https://demo.qkaifa.com/api/users.nearby?filter[location]=116.397469,39.908821&page=2",
    33. "prePageUrl": "https://demo.qkaifa.com/api/users.nearby?filter[location]=116.397469,39.908821&page=1",
    34. "pageLength": 20,
    35. "totalCount": 21,
    36. "totalPage": 2
    37. },
    38. "RequestId": "555ef52d-e0c0-431b-a0c7-fe787f39a454",
    39. "RequestTime": "2021-06-02 11:10:51"
    40. }

    示意图:
    image.png