JSON Feed
Categories
Component ID
2883197
Component name
JSON Feed
Component type
module
Maintenance status
Development status
Component security advisory coverage
covered
Downloads
1264
Component created
Component changed
Component body
Extends Views to provide a JSON Feed (an alternative or supplement to RSS or Atom) display plugin.
JSON Feed example feed output:
{
"version": "https://jsonfeed.org/version/1",
"title": "My Example Feed",
"home_page_url": "https://example.org/",
"feed_url": "https://example.org/feed.json",
"items": [
{
"id": "2",
"content_text": "This is a second item.",
"url": "https://example.org/second-item"
},
{
"id": "1",
"content_html": "<p>Hello, world!</p>",
"url": "https://example.org/initial-post"
}
]
}For details on the JSON Feed format, see the v1 spec.
