- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
一些 HTTP 方法,例如 POST
,需要在 header 和双 CRLF
之后发送正文。
其他的,例如GET
,没有正文,对它们来说,双CRLF
标志着请求的结束。
但是其他的呢:PUT
,DELETE
,...如何知道哪个需要主体?
通用 HTTP 客户端应该如何对未知的 HTTP 方法使用react?拒绝吗?默认需要正文,还是默认不需要正文?
如能提供相关规范的指针,我们将不胜感激。
编辑:我会在评论中详细说明我的问题。
我正在设计一个通用的 HTTP 客户端,程序员可以使用它向任何服务器发送任意 HTTP 请求。
客户端可以这样使用(伪代码):
HttpClient.request(method, url [, data]);
数据是可选的,可以是原始数据(字符串),也可以是键/值对的关联数组。
如果数据是数组,库会对数据进行 url 编码,然后将数据附加到 URL 以进行 GET
请求,或者将其发送到消息正文中以进行 POST
请求。
因此,鉴于开发人员选择的 HTTP 方法,我正在尝试确定此 HttpClient 是否必须/应该/不得/不应在请求中包含消息正文。
最佳答案
编辑:编译列表:
Content-Length
或 Transfer-Encoding
header 来表示(第 4.3 节) 对于响应,这已被定义:
This (RFC 7231) 或 This版本(来自 IETF & More In-Depth)就是你想要的。根据 RFC:
对于 PUT
:
The PUT method requests that the enclosed entity be stored under thesupplied Request-URI. If the Request-URI refers to an already existingresource, the enclosed entity SHOULD be considered as a modifiedversion of the one residing on the origin server. If the Request-URIdoes not point to an existing resource, and that URI is capable ofbeing defined as a new resource by the requesting user agent, theorigin server can create the resource with that URI. If a new resourceis created, the origin server MUST inform the user agent via the 201(Created) response. If an existing resource is modified, either the200 (OK) or 204 (No Content) response codes SHOULD be sent to indicatesuccessful completion of the request. If the resource could not becreated or modified with the Request-URI, an appropriate errorresponse SHOULD be given that reflects the nature of the problem. Therecipient of the entity MUST NOT ignore any Content-* (e.g.Content-Range) headers that it does not understand or implement andMUST return a 501 (Not Implemented) response in such cases.
对于 DELETE
:
The DELETE method requests that the origin server delete the resourceidentified by the Request-URI. This method MAY be overridden by humanintervention (or other means) on the origin server. The client cannotbe guaranteed that the operation has been carried out, even if thestatus code returned from the origin server indicates that the actionhas been completed successfully. However, the server SHOULD NOTindicate success unless, at the time the response is given, it intendsto delete the resource or move it to an inaccessible location.
A successful response SHOULD be 200 (OK) if the response includes anentity describing the status, 202 (Accepted) if the action has not yetbeen enacted, or 204 (No Content) if the action has been enacted butthe response does not include an entity.
If the request passes through a cache and the Request-URI identifiesone or more currently cached entities, those entries SHOULD be treatedas stale. Responses to this method are not cacheable.
关于http - 哪些 HTTP 方法需要主体?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16339198/
我想了解 Ruby 方法 methods() 是如何工作的。 我尝试使用“ruby 方法”在 Google 上搜索,但这不是我需要的。 我也看过 ruby-doc.org,但我没有找到这种方法。
Test 方法 对指定的字符串执行一个正则表达式搜索,并返回一个 Boolean 值指示是否找到匹配的模式。 object.Test(string) 参数 object 必选项。总是一个
Replace 方法 替换在正则表达式查找中找到的文本。 object.Replace(string1, string2) 参数 object 必选项。总是一个 RegExp 对象的名称。
Raise 方法 生成运行时错误 object.Raise(number, source, description, helpfile, helpcontext) 参数 object 应为
Execute 方法 对指定的字符串执行正则表达式搜索。 object.Execute(string) 参数 object 必选项。总是一个 RegExp 对象的名称。 string
Clear 方法 清除 Err 对象的所有属性设置。 object.Clear object 应为 Err 对象的名称。 说明 在错误处理后,使用 Clear 显式地清除 Err 对象。此
CopyFile 方法 将一个或多个文件从某位置复制到另一位置。 object.CopyFile source, destination[, overwrite] 参数 object 必选
Copy 方法 将指定的文件或文件夹从某位置复制到另一位置。 object.Copy destination[, overwrite] 参数 object 必选项。应为 File 或 F
Close 方法 关闭打开的 TextStream 文件。 object.Close object 应为 TextStream 对象的名称。 说明 下面例子举例说明如何使用 Close 方
BuildPath 方法 向现有路径后添加名称。 object.BuildPath(path, name) 参数 object 必选项。应为 FileSystemObject 对象的名称
GetFolder 方法 返回与指定的路径中某文件夹相应的 Folder 对象。 object.GetFolder(folderspec) 参数 object 必选项。应为 FileSy
GetFileName 方法 返回指定路径(不是指定驱动器路径部分)的最后一个文件或文件夹。 object.GetFileName(pathspec) 参数 object 必选项。应为
GetFile 方法 返回与指定路径中某文件相应的 File 对象。 object.GetFile(filespec) 参数 object 必选项。应为 FileSystemObject
GetExtensionName 方法 返回字符串,该字符串包含路径最后一个组成部分的扩展名。 object.GetExtensionName(path) 参数 object 必选项。应
GetDriveName 方法 返回包含指定路径中驱动器名的字符串。 object.GetDriveName(path) 参数 object 必选项。应为 FileSystemObjec
GetDrive 方法 返回与指定的路径中驱动器相对应的 Drive 对象。 object.GetDrive drivespec 参数 object 必选项。应为 FileSystemO
GetBaseName 方法 返回字符串,其中包含文件的基本名 (不带扩展名), 或者提供的路径说明中的文件夹。 object.GetBaseName(path) 参数 object 必
GetAbsolutePathName 方法 从提供的指定路径中返回完整且含义明确的路径。 object.GetAbsolutePathName(pathspec) 参数 object
FolderExists 方法 如果指定的文件夹存在,则返回 True;否则返回 False。 object.FolderExists(folderspec) 参数 object 必选项
FileExists 方法 如果指定的文件存在返回 True;否则返回 False。 object.FileExists(filespec) 参数 object 必选项。应为 FileS
我是一名优秀的程序员,十分优秀!