FeedBurner Namespace Reference
The FeedBurner namespace carries the metadata FeedBurner adds when it proxies a feed. The element that matters most is origLink: FeedBurner rewrites each item's <link> to a tracking URL and puts the publisher's own URL here, so a consumer that wants the real article reads origLink rather than link.
| Namespace URI | http://rssnamespace.org/feedburner/ext/1.0 |
|---|---|
| Specification | FeedBurner Namespace Reference (archive) |
| Prefix | <feedburner:*> |
| Available in | RSS, Atom, RDF |
| Property | feedburner |
Types
ts
export namespace FeedBurnerNs {
export type FeedFlare<TStrict extends boolean = false> = Strict<
{
href: Requirable<string> // Required in spec
src: Requirable<string> // Required in spec
value?: string
},
TStrict
>
export type Feed<TStrict extends boolean = false> = {
info?: string
feedFlares?: Array<FeedFlare<TStrict>>
browserFriendly?: string
emailServiceId?: string
feedburnerHostname?: string
awareness?: string
}
export type Item = {
origLink?: string
origEnclosureLink?: string
awareness?: string
}
}Related
- FeedPress Namespace - Feed hosting metadata
- Parsing Namespaces - How namespace parsing works