1

node.js を使用してバイナリ ファイル (私の場合は audio/mpeg) をプロキシし、いくつかのヘッダーを変更するだけで、プロキシ サーバーを介してファイルのトラフィックをリダイレクトすることはできますか?

基本的には、CORS ヘッダーをリモート オーディオ ファイルに追加し、XHttpRequest 経由で開くことができるようにしたいだけなので、このプロキシは良い解決策のようです: https://github.com/gr2m/CORS-Proxy

しかし、実際のファイルがプロキシ経由で転送されないように、ヘッダーと「リダイレクト」をリモートサーバー上のバイナリファイルに同時に追加することは可能でしょうか?

4

1 に答える 1

1

Is it possible to proxy a binary file (audio/mpeg in my case) with node.js and just modify some headers, but not redirect the files' traffic through your proxy-server?

No. It's the most heretic thing I'd heard of. I would call it a nonsense. You can NOT do this kind of thing with node.js or any other server-side technology.

于 2012-06-24T14:18:56.690 に答える