티스토리 수익 글 보기

티스토리 수익 글 보기

The Link-Template HTTP Header Field
Prahran Australia mnot@mnot.net https://www.mnot.net/
Applications and Real-Time Building Blocks for HTTP APIs link relation This specification defines the Link-Template HTTP header field, providing a means for describing the structure of a link between two resources, so that new links can be generated. The latest revision of this draft can be found at . Status information for this document may be found at . Discussion of this document takes place on the Building Blocks for HTTP APIs Working Group mailing list (), which is archived at . Subscribe at . Source for this draft and an issue tracker can be found at .
Introduction defines a syntax for templates that, when expanded using a set of variables, results in a URI . This specification defines a HTTP header field for conveying templates for links in the headers of a HTTP message. It is complimentary to the Link header field defined in , which carries links directly.
Notational Conventions The key words “MUST“, “MUST NOT“, “REQUIRED“, “SHALL“, “SHALL NOT“, “SHOULD“, “SHOULD NOT“, “RECOMMENDED“, “NOT RECOMMENDED“, “MAY“, and “OPTIONAL” in this document are to be interpreted as described in BCP 14 when, and only when, they appear in all capitals, as shown here. This document uses the Augmented BNF defined in to specify valid protocol elements. Additionally, it uses the modified “parameter” rule from and the “URI-Template” rule from .
The Link-Template Header Field The Link-Template header field provides a means for serialising one or more links into HTTP message metadata. It is semantically equivalent to the Link header field defined in , except that it uses URI Templates to convey the structure of links.
Link-Template = “Link-Template” “:” #templated-link templated-link = “<” URI-Template “>” *( “;” parameter )
For example:
Link-Template: </{username}>; rel=”https://example.org/rel/user”
indicates that a resource with the relation type “https://example.org/rel/user” can be found by interpolating the “username” variable into the template given. The target for the link (as defined in ) is the result of expanding the URI Template (being converted to an absolute URI after expansion, if necessary). The context, relation type and target attributes for the link are determined as defined for the Link header field in . Parameters on a templated-link have identical semantics to those of a Link header field. This includes (but is not limited to) the use of the “rel” parameter to convey the relation type, the “anchor” parameter to modify the context IRI, and so on. Likewise, the requirements for parameters on templated-links are the same as those for a Link header field; in particular, the “rel” parameter MUST NOT appear more than once, and if it does, the templated-link MUST be ignored by parsers. This specification defines additional semantics for the “var-base” parameter on templated-links; see below.
The ‘var-base’ parameter When a templated-link has a ‘var-base’ parameter, its value conveys a URI-reference that is used as a base URI for the variable names in the URI template. This allows template variables to be globally identified, rather than specific to the context of use. Dereferencing the URI for a particular variable might lead to more information about the syntax or semantics of that variable; specification of particular formats for this information is out of scope for this document. To determine the URI for a given variable, the value given is used as a base URI in reference resolution (as specified in ). If the resulting URI is still relative, the context of the link is used as the base URI in a further resolution; see . For example:
Link-Template: </widgets/{widget_id}>; rel=”https://example.org/rel/widget”; var-base=”https://example.org/vars/”
indicates that a resource with the relation type “https://example.org/rel/widget” can be found by interpolating the “https://example.org/vars/widget_id” variable into the template given. If the current context of the message that the header appears within is “https://example.org/”, the same information could be conveyed by this header field:
Link-Template: </widgets/{widget_id}>; rel=”https://example.org/rel/widget”; var-base=”/vars/”
Security Considerations The security consideration for the Link header field in and those for URI Templates both apply.
IANA Considerations This specification enters the “Link-Template” into the Hypertext Transfer Protocol (HTTP) Field Name Registry.
Field Name: Link-Template Status: permanent Specification document: [this document]
HTTP Semantics Adobe Fastly greenbytes GmbH URI Template Uniform Resource Identifier (URI): Generic Syntax Web Linking Key words for use in RFCs to Indicate Requirement Levels Ambiguity of Uppercase vs Lowercase in RFC 2119 Key Words Character Set and Language Encoding for Hypertext Transfer Protocol (HTTP) Header Field Parameters