如何用油猴将下载任务添加到Aria2中
群里的大神多,我想在油猴中将下载任务添加到Aria2中,有示例代码吗?万分感谢! 这个问题我研究研究...应该明天能尝试给哥哥一些建议 Aria2是使用的http调用,哥哥网上去找一下相关API文档就可以了 李恒道 发表于 2023-11-8 20:17
这个问题我研究研究...
应该明天能尝试给哥哥一些建议
我已经用人工智能的答案搞定了,谢谢道哥。 https://aria2.github.io/manual/en/html/aria2c.html#terminology
https://aria2.github.io/manual/en/html/aria2c.html#methods
这是官方的文档,有点难看 这篇文章还可以:https://www.cnblogs.com/iminifly/p/16061720.html
另外也可以直接从gui工具上抓包:
```js
fetch("http://192.168.1.136:6800/jsonrpc", {
"headers": {
"accept": "application/json, text/plain, */*",
"accept-language": "zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6",
"content-type": "application/json"
},
"referrerPolicy": "strict-origin-when-cross-origin",
"body": "{\"jsonrpc\":\"2.0\",\"method\":\"aria2.addUri\",\"id\":\"----\",\"params\":[\"token:xxxx\",[\"https://bbs.tampermonkey.net.cn/thread-5310-1-1.html\"],{}]}",
"method": "POST",
"mode": "cors",
"credentials": "include"
});
``` 王一之 发表于 2023-11-9 10:06
这篇文章还可以:https://www.cnblogs.com/iminifly/p/16061720.html
另外也可以直接从gui工具上抓包 ...
https://github.com/sonnyp/aria2.js/#browser
这里也有
页:
[1]