To install click the Add extension button. That's it.

The source code for the WIKI 2 extension is being checked by specialists of the Mozilla Foundation, Google, and Apple. You could also do it yourself at any point in time.

4,5
Kelly Slayton
Congratulations on this excellent venture… what a great idea!
Alexander Grigorievskiy
I use WIKI 2 every day and almost forgot how the original Wikipedia looks like.
Live Statistics
English Articles
Improved in 24 Hours
Added in 24 Hours
Languages
Recent
Show all languages
What we do. Every page goes through several hundred of perfecting techniques; in live mode. Quite the same Wikipedia. Just better.
.
Leo
Newton
Brights
Milds

From Wikipedia, the free encyclopedia

JSON Feed
Filename extension
.json
Internet media typeapplication/feed+json
Type of formatWeb syndication
Extended fromJSON
Open format?yes
Websitehttps://jsonfeed.org/

JSON Feed is a Web feed file format for Web syndication in JSON instead of XML as used by RSS and Atom.[1]

A range of software libraries and web frameworks support content syndication via JSON Feed.[2] Supporting clients include NetNewsWire, NewsBlur,[3] ReadKit and Reeder.

Notable publishers include NPR[4] and the Microblogging platform Micro.blog, which uses it as the response format for many API calls.[5]

YouTube Encyclopedic

  • 1/5
    Views:
    2 800 477
    12 593
    437
    5 924
    14 522
  • Learn JSON in 10 Minutes
  • Scraping Data from a website in JSON format
  • Web App Output as JSON data Web App JSON Feed ContentService from Sheets Data as JSON API endpoint
  • How to Output JSON data into the web page JavaScript code and JSON data for web page content
  • BEGINNERS: How to add JSON file and render data to HTML page

Transcription

Example

This is an example feed using the 1.1 Specification.[6] More details can be found on the website, including other optional properties like expired and hubs. Custom objects may also be used by publishers, but feed readers that do not understand it must ignore it.

{
  "version": "https://jsonfeed.org/version/1.1",
  "title": "My Example Feed",
  "home_page_url": "https://example.org/",
  "feed_url": "https://example.org/feed.json",
  "description": "Optional to provide more detail beyond the title.",
  "user_comment": "Optional and should be ignored by feed readers.",
  "next_url": "https://example.org/pagination?feed=feed.json&p=17",
  "icon": "https://example.org/favicon-timeline-512x512.png",
  "favicon": "https://example.org/favicon-sourcelist-64x64.png",
  "authors": [
    {
      "name": "Optional Author",
      "url": "https://example.org/authors/optional-author",
      "avatar": "https://example.org/authors/optional-author/avatar-512x512.png"
    }
  ],
  "language": "en-US",
  "items": [
    {
      "id": "2",
      "content_text": "This is a second item.",
      "url": "https://example.org/second-item",
      "language": "es-mx",
      "attachments": [
        {
          "url": "https://example.org/second-item/audio.ogg",
          "mime_type": "audio/ogg",
          "title": "Optional Title",
          "size_in_bytes": 31415927,
          "duration_in_seconds": 1800
        }
      ]
    },
    {
      "id": "required-unique-string-that-does-not-change: number, guid, url, etc.",
      "url": "https://example.org/initial-post",
      "external_url": "https://en.wikipedia.org/w/index.php?title=JSON_Feed",
      "title": "Optional Title",
      "content_html": "<p>Optional content for the feed reader. You may also use content_text or both at the same time.</p>",
      "content_text": "Optional text for simple feeds.",
      "summary": "Optional summary of the item.",
      "image": "https://example.org/initial-post/main-img.png",
      "banner_image": "https://example.org/initial-post/details-banner.png",
      "date_published": "2021-10-25T19:30:00-01:00",
      "date_modified": "2021-10-26T19:45:00-01:00",
      "authors": [
        {
          "name": "Optional Author",
          "url": "https://example.org/authors/optional-author",
          "avatar": "https://example.org/authors/optional-author/avatar-512x512.png"
        }
      ],
      "tags": [
        "Optional Tag",
        "Example"
      ],
      "language": "en-US"
    }
  ]
}

See also

References

  1. ^ Brent Simmons; Manton Reece (2017-05-17). "JSON Feed: Version 1".
  2. ^ Brent Simmons; Manton Reece. "JSON Feed: Code".
  3. ^ Samuel Clay (23 May 2017). "NewsBlur now supports the new JSON Feed spec". The NewsBlur Blog. Retrieved 17 July 2020.
  4. ^ Kasbergen, Nara (12 December 2017). "NPR now supports JSON Feed!". Medium. Retrieved 17 July 2020.
  5. ^ "JSON Feed". Indie Microblogging. Manton Reece. Retrieved 2022-12-24.
  6. ^ "JSON Feed - JSON Feed Version 1.1". www.jsonfeed.org. Retrieved 2021-10-25.

External links

This page was last edited on 24 February 2024, at 21:49
Basis of this page is in Wikipedia. Text is available under the CC BY-SA 3.0 Unported License. Non-text media are available under their specified licenses. Wikipedia® is a registered trademark of the Wikimedia Foundation, Inc. WIKI 2 is an independent company and has no affiliation with Wikimedia Foundation.