2023年5月
ghphoxy的替代品。
https://ghp.quickso.cn/
如果主站https://ghp.quickso.cn/不能使用,请替换为镜像站https://github.hgnet.workers.dev/
git clone
git clone https://ghp.quickso.cn/https://github.com/xxx/xxx
wget & curl
wget https://ghp.quickso.cn/https://github.com/xxx/xxx/archive/master.zip
wget https://ghp.quickso.cn/https://raw.githubusercontent.com/xxx/xxx/master/xxx
curl -O https://ghp.quickso.cn/https://github.com/xxx/xxx/archive/master.zip
curl -O https://ghp.quickso.cn/https://raw.githubusercontent.com/xxx/xxx/master/xxx
遇到一个很奇葩的问题。
头一次遇到服务端,根据客户端header里面的Accept更改返回内容格式的。
一开始用了个通用的:
'Accept': 'text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7'
结果给我返回的居然是XML格式的。
后来取消了。就返回json格式的了。。