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

推荐订阅源

Cloudbric
Cloudbric
E
Exploit-DB.com RSS Feed
SecWiki News
SecWiki News
Forbes - Security
Forbes - Security
N
News | PayPal Newsroom
S
Security @ Cisco Blogs
Schneier on Security
Schneier on Security
V
V2EX - 技术
S
Secure Thoughts
W
WeLiveSecurity
Google DeepMind News
Google DeepMind News
C
CERT Recently Published Vulnerability Notes
NISL@THU
NISL@THU
S
Securelist
S
Security Archives - TechRepublic
Know Your Adversary
Know Your Adversary
V
Vulnerabilities – Threatpost
Security Latest
Security Latest
Recent Commits to openclaw:main
Recent Commits to openclaw:main
G
GRAHAM CLULEY
H
Hacker News: Front Page
Microsoft Azure Blog
Microsoft Azure Blog
I
Intezer
Google Online Security Blog
Google Online Security Blog
美团技术团队
阮一峰的网络日志
阮一峰的网络日志
T
The Exploit Database - CXSecurity.com
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
Webroot Blog
Webroot Blog
Jina AI
Jina AI
Engineering at Meta
Engineering at Meta
P
Proofpoint News Feed
The Cloudflare Blog
I
InfoQ
L
LangChain Blog
U
Unit 42
P
Proofpoint News Feed
S
Schneier on Security
S
Security Affairs
Y
Y Combinator Blog
T
Tenable Blog
N
News and Events Feed by Topic
MyScale Blog
MyScale Blog
量子位
Google DeepMind News
Google DeepMind News
Cyberwarzone
Cyberwarzone
博客园 - 聂微东
D
Darknet – Hacking Tools, Hacker News & Cyber Security
GbyAI
GbyAI
AWS News Blog
AWS News Blog

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