Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我已经看到了很多关于 http 请求的示例,并且大多数使用 setValue: 方法。但在我的代码中似乎没有必要。
我很好奇它是否真的需要,还是取决于对象与之通信的服务器?
感谢您的任何见解。
简短的回答没有。长答案是这取决于您对请求的处理方式。例如,如果我正在与 Github 通信,那么我在“授权”http 标头字段中添加“基本 {BASE64_ENCODED_HASH}”以进行身份验证。您使用的服务可能需要您使用它的某些东西,但对于基本请求,这不是必需的。