github API : Request forbidden by administrative rules


字数:343 阅读时长:1分钟 阅读:85

使用 Tauri 框架内置的 fetch 方法调用 GitHub API 时,出现 Request forbidden by administrative rules 错误。

问题原因

GitHub API 要求所有的请求都必须包含一个有效的 User-Agent 头部。User-Agent 头部用于标识发起请求的用户或应用程序。

github 官网说明:

All API requests must include a valid User-Agent header. The User-Agent header identifies the user or application that is making the request.
By default, GitHub CLI sends a valid User-Agent header. However, GitHub recommends using your GitHub username, or the name of your application, for the User-Agent header value. This allows GitHub to contact you if there are problems.

解决方案

  • 在请求的 headers 中添加 'User-Agent': 'Tauri-fetch' 即可解决此问题,Tauri-fetch 可替换为真实的,也可以自定义其他值。
  • http 请求封装:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
// common/http.js

import { Body, fetch, ResponseType } from '@tauri-apps/api/http'

// https://tauri.app/zh-cn/v1/api/js/http#fetch
export const http = (opts = {}) => {
return new Promise((resolve, reject) => {
const { url, method, params, data, headers, callback } = opts
fetch(url, {
method: method || 'GET',
headers: {
'User-Agent': 'Tauri-fetch', // 添加 User-Agent 头部
'content-type': 'application/json',
...headers,
},
responseType: ResponseType.JSON,
timeout: 60000,
query: params,
body: Body.json({
...data,
}),
})
.then((res) => {
callback && callback(res)
resolve(res)
})
.catch((e) => {
reject(e)
})
})
}

参考文档:https://docs.github.com/en/rest/using-the-rest-api/getting-started-with-the-rest-api?apiVersion=2022-11-28#user-agent


欢迎访问:天问博客

本文作者: Tiven
发布时间: 2024-03-12
最后更新: 2024-03-27
本文标题: github API : Request forbidden by administrative rules
本文链接: https://www.tiven.cn/p/588a8def/
版权声明: 本作品采用 CC BY-NC-SA 4.0 许可协议进行许可。转载请注明出处!
欢迎留言,提问 ^_^
个人邮箱: tw.email@qq.com
notification icon
博客有更新,将会发送通知给您!