mirror of
https://github.com/yoimiya-kokomi/miao-plugin.git
synced 2024-11-16 12:51:30 +00:00
Merge pull request #84 from Algoinde/master
Add User-Agent for API bot identification
This commit is contained in:
commit
c35c4246cd
@ -9,7 +9,11 @@ let Enka = {
|
|||||||
let url = diyCfg?.enkaApi?.url || sysCfg.enkaApi.url
|
let url = diyCfg?.enkaApi?.url || sysCfg.enkaApi.url
|
||||||
let profileApi = diyCfg?.enkaApi?.listApi || sysCfg.enkaApi.listApi
|
let profileApi = diyCfg?.enkaApi?.listApi || sysCfg.enkaApi.listApi
|
||||||
let api = profileApi({ url, uid, avatar })
|
let api = profileApi({ url, uid, avatar })
|
||||||
let req = await fetch(api)
|
if(diyCfg?.enkaApi?.apiKey) {
|
||||||
|
api += '?key=' + diyCfg.enkaApi.apiKey
|
||||||
|
}
|
||||||
|
let headers = {headers: {'User-Agent': diyCfg?.enkaApi?.userAgent || sysCfg.enkaApi.userAgent}}
|
||||||
|
let req = await fetch(api, headers)
|
||||||
let data = await req.json()
|
let data = await req.json()
|
||||||
if (!data.playerInfo) {
|
if (!data.playerInfo) {
|
||||||
e.reply(`请求失败:${data.msg || '可能是面板服务并发过高,请稍后重试'}`)
|
e.reply(`请求失败:${data.msg || '可能是面板服务并发过高,请稍后重试'}`)
|
||||||
|
@ -13,7 +13,8 @@
|
|||||||
* */
|
* */
|
||||||
|
|
||||||
export const enkaApi = {
|
export const enkaApi = {
|
||||||
url: 'https://enka.shinshin.moe/'
|
url: 'https://enka.shinshin.moe/',
|
||||||
|
userAgent: 'Miao-Plugin/3.0'
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
Loading…
Reference in New Issue
Block a user