JSON and RSS feeds - the difference?

What is the difference between JSON and RSS feeds?

In addition to:

The JSON feed is in a format that JavaScript can easily be used directly.

Browsers can consume a large amount of JSON much more efficiently than they can consume a large amount of XML and the gap is widening, since recent versions of browsers now provide their own safe support for encoding and decoding JSON.

+1
source share
2 answers

If you use JavaScript, you know what might be the DOM problem. I would suggest using JSON just because it is easier to program. I also depend on where you send it, regardless of whether your clients support RSS or JSON.

Other things:

  • JSON
  • JSON
  • , RSS
  • api/protocol (RSS )
+1

JSON . , PHP json_decode($json).

0

All Articles