Tools, FAQ, Tutorials:
Atom "feed/link" Element
What is the Atom "feed/link" element? How To Generate a "feed/link" element?
✍: FYIcenter.com
The <link> element is not a required sub-element of the <feed> element.
But it is strongly recommended that you provide a link element with rel="self" for each of your
feed documents.
The rule for feed link element is simple. It needs two attributes:
For example, if you have a feed document located at http://dev.fyicenter.com/atom.xml, you should generate a feed link element like this:
<link rel="self" href="http://dev.fyicenter.com/atom.xml"/>
⇐ Atom "feed/subtitle" Element
2017-11-29, 1133👍, 0💬
Popular Posts:
How To Use an Array as a Queue in PHP? A queue is a simple data structure that manages data elements...
How To Merge Cells in a Column? If you want to merge multiple cells vertically in a row, you need to...
How to write a policy to set and get custom variables? Here is a policy that sets and gets custom va...
How to add a new operation to an API on the Publisher Dashboard of an Azure API Management Service? ...
How to convert JSON Objects to PHP Associative Arrays using the json_decode() function? Actually, JS...