惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

月光博客
月光博客
云风的 BLOG
云风的 BLOG
小众软件
小众软件
雷峰网
雷峰网
博客园 - 【当耐特】
V
V2EX
WordPress大学
WordPress大学
IT之家
IT之家
Last Week in AI
Last Week in AI
罗磊的独立博客
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Apple Machine Learning Research
Apple Machine Learning Research
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
V
Visual Studio Blog
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
有赞技术团队
有赞技术团队
The Cloudflare Blog
Jina AI
Jina AI
博客园 - 司徒正美
阮一峰的网络日志
阮一峰的网络日志
博客园 - 聂微东
大猫的无限游戏
大猫的无限游戏
博客园 - 三生石上(FineUI控件)
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com

WishMeLz - NodeJS

Electron 主进程起一个可用的 HTTPS 静态服务器 - WishMeLz 宝塔Node管理器安装node版本提示:文件下载失败,请手动安装! - WishMeLz Minio 之 Nodejs - WishMeLz nuxt项目本地启动,多开标签一直显示加载中 - WishMeLz nvm win10安装 - WishMeLz nodejs 对接邮箱服务 imap - WishMeLz PM2搭配nvm使用不同版本Node启动项目 - WishMeLz nodejs 生成网站sitemap.xml - WishMeLz SSE(Server-Sent Events) - WishMeLz
EA Racenet API - WishMeLz
WishMeLz · 2026-06-01 · via WishMeLz - NodeJS

公共请求头:

const headers = {
    Authorization: `Bearer eyJraWQiOiIw`
}

1、查询

GET:https://web-api.racenet.com/api/Friend/profile 好友中搜索

GET:https://web-api.racenet.com/api/Friend/search 非好友中搜索

请求参数,路径参数

{ 
    searchTerm: "", // 搜索关键字
    pageNumber: 1,
    pageSize: 20,
    includePreferences: true
}

返回值

{
  pageNumber: 1,
  pageCount: 1,
  totalFriends: 1,
  friends: [
    {
      ssid: '1011785487515',
      displayName: 'xxxx',
      profileImage: null,
      coverPhoto: null,
      lastPlayed: null,
      isPrivate: false
    }
  ]
}

示例

axios.get(`https://web-api.racenet.com/api/Friend/profile`,
    {
        headers,
        params: {
            searchTerm: 'eaname',
            pageNumber: 1,
            pageSize: 20,
            includePreferences: true
        }
    })
    .then(response => {
        console.log(response.data);
    })
    .catch(error => {
        console.log(`查询失败`);
    });

删除

DELETE:https://web-api.racenet.com/api/Friend/remove

请求参数,路径参数

{
  friendSSID:"123123"
}

返回值

true

示例

axios.delete(`https://web-api.racenet.com/api/Friend/remove`,
    {
        headers,
        params: {
            friendSSID: "2301125583"
        }
    })
    .then(response => {
        console.log(response.data);
    })
    .catch(error => {
        console.log(`删除失败`);
    });

添加好友

POST:https://web-api.racenet.com/api/Friend/request

请求参数,路径参数

{
    friendSSID:'13123'
}

返回值

true

示例

axios.post(`https://web-api.racenet.com/api/Friend/request`,
    {
        headers,
        params: {
            friendSSID: "2301125583"
        }
    })
    .then(response => {
        console.log(response.data);
    })
    .catch(error => {
        console.log(`添加失败`);
    });