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

推荐订阅源

酷 壳 – CoolShell
酷 壳 – CoolShell
T
Threatpost
Latest news
Latest news
N
News | PayPal Newsroom
Threat Intelligence Blog | Flashpoint
Threat Intelligence Blog | Flashpoint
Help Net Security
Help Net Security
D
Darknet – Hacking Tools, Hacker News & Cyber Security
AI
AI
Simon Willison's Weblog
Simon Willison's Weblog
TaoSecurity Blog
TaoSecurity Blog
The Last Watchdog
The Last Watchdog
L
LINUX DO - 热门话题
Google DeepMind News
Google DeepMind News
T
Threat Research - Cisco Blogs
O
OpenAI News
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
T
The Exploit Database - CXSecurity.com
NISL@THU
NISL@THU
Application and Cybersecurity Blog
Application and Cybersecurity Blog
S
Securelist
小众软件
小众软件
cs.CL updates on arXiv.org
cs.CL updates on arXiv.org
Martin Fowler
Martin Fowler
S
SegmentFault 最新的问题
Cisco Talos Blog
Cisco Talos Blog
云风的 BLOG
云风的 BLOG
AWS News Blog
AWS News Blog
GbyAI
GbyAI
N
News and Events Feed by Topic
cs.CV updates on arXiv.org
cs.CV updates on arXiv.org
美团技术团队
Engineering at Meta
Engineering at Meta
A
About on SuperTechFans
博客园 - 三生石上(FineUI控件)
S
Schneier on Security
博客园 - 聂微东
V2EX - 技术
V2EX - 技术
T
Troy Hunt's Blog
SecWiki News
SecWiki News
S
Secure Thoughts
B
Blog RSS Feed
Hugging Face - Blog
Hugging Face - Blog
WordPress大学
WordPress大学
腾讯CDC
H
Heimdal Security Blog
Exploit-DB.com RSS Feed
Exploit-DB.com RSS Feed
Apple Machine Learning Research
Apple Machine Learning Research
月光博客
月光博客
www.infosecurity-magazine.com
www.infosecurity-magazine.com
P
Privacy International News Feed

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(`添加失败`);
    });