English 中文(简体)
在 URL 中 http 发送二进制数据
原标题:Sending binary data over http in the url

我正在设法通过浏览器中的 URL 字段将二进制数据传递给 http 上的服务器。 是否有办法绕过浏览器的自动 http 编码, 这样我就可以自己编码数据 。

例如 : 以 URL% 30 填入 URL% 30, 这样浏览器就不会重新编码 URL 和我 的% 2530 。

解决: 未来谁可能遇到类似的问题。 您可以使用 wget 参数完成

-restric-file-name=ascii

这基本上确保了% 不会逃脱

最佳回答

我设法这样做了, 写下我自己的 tcp 客户端, 连接到 http 服务器并传送请求, 手动输入 。

问题回答

使用 < a href=>""http://msdn.microsoft.com/en-us/library/dhx0d524.aspx" rel = "nofollow" >base64 编码,这就是它的设计目的。

使用 ""https://stackoverflow.com/ questions/17745025/convert-a-string-into-base62">base62 编码。

编码字符串不包含任何将被 URL 编码的字符 。





相关问题
How to set response filename without forcing "save as" dialog

I am returning a stream in some response setting the appropriate content-type header. The behavior I m looking for is this: If the browser is able to render content of the given content type then it ...

Which Http redirects status code to use?

friendfeed.com uses 302. bit.ly uses 301. I had decided to use 303. Do they behave differently in terms of support by browsers ?

Does HttpWebRequest send 200 OK automatically?

Background: I am implementing Paypal IPN handler. This great article on Paypal states that I am required to send a 200 OK back to Paypal after I read the response. The processing of IPN request is ...

Java HTTPAUTH

我试图把桌面应用程序连接起来,我是同D.icio.us api @ Delicious Alan书写的,简单地向他们提供我的用户名和密码,并请他把书记上写给我......。

Finding out where curl was redirected

I m using curl to make php send an http request to some website somewhere and have set CURLOPT_FOLLOWLOCATION to 1 so that it follows redirects. How then, can I find out where it was eventually ...

热门标签