
For Drupal's 20th birthday we're kicking off a year of celebration and contribution. Explore activities on our blog and take advantage of early-bird pricing for DrupalCon!
The JSON Feed format is a pragmatic syndication format, like RSS and Atom, but with one big difference: it’s JSON instead of XML.
This module extends Views to provide a feed in the JSON Feed syndication format 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.
Drupal 9 is supported as of version 1.2.
Drupal 9 compatibility.
Development version: 8.x-1.x-dev updated 23 Apr 2020 at 19:23 UTC