feed.links
¶
A list of dictionaries with details on the links associated with the feed. Each link has a rel (relationship), type (content type), and href (the URL that the link points to). Some links may also have a title.
feed.links[i].rel
¶
The relationship of this feed link.
Atom 1.0 defines five standard link relationships and describes the process for registering others. Here are the five standard rel values:
- alternate
- enclosure
- related
- self
- via
feed.links[i].type
¶
The content type of the page that this feed link points to.
feed.links[i].href
¶
The URL of the page that this feed link points to.
If this is a relative URI, it is resolved according to a set of rules.