URenko

Results 107 comments of URenko

日志不全 还需要前面一点的 traceback

Thanks for your fix! But names like `abc:xyz` still don't work, e.g.: ``` bash $ ./rclone lsl --max-depth 1 abc:xyz -vvv 2025/06/14 …… DEBUG : rclone: Version "v1.70.0-beta.xxx.backend/terabox" starting with...

> Encryption download do not works Well, that's a little weird because it works for me.

This problem seems to exist for other data as well (e.g. bookmarks and likes), where everything is sorted by time/tweet ID and their original order is lost 😢

根据标准,HTTP 代理的第一步是一个 CONNECT 请求,这一步只能是 HTTP/1.1 后面就是单纯的 TCP 转发,可以是 HTTP/2 (甚至都包裹在TLS中了,不会触及) 你可能在用 node.js? https://stackoverflow.com/questions/62840291/how-do-you-send-http-2-requests-via-a-proxy-using-node-js 可能对你有帮助

给客户端(浏览器)和远程服务器两边都发 ALPN: ['h2', 'http/1.1'] 就行了。 但是有可能有一边不支持 h2,所以需要在 client hello 和 server hello 之间插入一段代码,但是这暂时由于 Python 标准库的一个 bug 而不可行: https://github.com/python/cpython/issues/87748 但你强行 h2 是可行的,只是可能需要手动给客户端(浏览器)和远程服务器两边都发 ALPN: ['h2'],https://github.com/URenko/Accesser/commit/c69c2f3c61b372802cfd2f097ef7830d1b73aa61 是对其中一边操作的例子

> > 根据标准,HTTP 代理的第一步是一个 CONNECT 请求,这一步只能是 HTTP/1.1 后面就是单纯的 TCP 转发,可以是 HTTP/2 (甚至都包裹在TLS中了,不会触及) > > 你可能在用 node.js? https://stackoverflow.com/questions/62840291/how-do-you-send-http-2-requests-via-a-proxy-using-node-js 可能对你有帮助 > > 话说用node是不是可以直接构造一个没有SNI或者自定义SNI的TLS请求?这样也就不用再开代理来修改请求了 应该是可以的

> > 给客户端(浏览器)和远程服务器两边都发 ALPN: ['h2', 'http/1.1'] 就行了。 但是有可能有一边不支持 h2,所以需要在 client hello 和 server hello 之间插入一段代码,但是这暂时由于 Python 标准库的一个 bug 而不可行: [python/cpython#87748](https://github.com/python/cpython/issues/87748) > > 但你强行 h2 是可行的,只是可能需要手动给客户端(浏览器)和远程服务器两边都发 ALPN: ['h2'],[c69c2f3](https://github.com/URenko/Accesser/commit/c69c2f3c61b372802cfd2f097ef7830d1b73aa61) 是对其中一边操作的例子 > >...

> > > > 给客户端(浏览器)和远程服务器两边都发 ALPN: ['h2', 'http/1.1'] 就行了。 但是有可能有一边不支持 h2,所以需要在 client hello 和 server hello 之间插入一段代码,但是这暂时由于 Python 标准库的一个 bug 而不可行: [python/cpython#87748](https://github.com/python/cpython/issues/87748) > > > > 但你强行 h2 是可行的,只是可能需要手动给客户端(浏览器)和远程服务器两边都发 ALPN:...