1

http リクエストの例をいくつか見てきましたが、ほとんどが setValue: メソッドを使用しています。しかし、私のコードでは必要ないようです。

それが本当に必要なのか、それともオブジェクトが通信しているサーバーに依存するのか、興味がありますか?

洞察をありがとう。

4

1 に答える 1

2

Short answer no. Long answer is it depends on what your doing with your requests. For example if I am communicating with Github then I add "Basic {BASE64_ENCODED_HASH}" for authentication in the "authorization" http header field. The services you work with may require something that requires you to use it, but for basic requests it is not necessary.

于 2012-07-11T15:01:10.747 に答える