How to print list of JSON objects

0

I'm implementing facebook posts for a particular page on my site and I'm having trouble understanding how to print the following JSON framework:

{
  "posts": {
    "data": [
      {
        "created_time": "2017-11-16T19:52:28+0000",
        "message": "Teste | JAGUAFRANGOS | A Agência produziu os layouts, vídeo institucional e toda a cobertura do desfile em comemoração ao aniversário de 70 anos de Jaguapitã e aos 25 anos da JAGUAFRANGOS na cidade.                     
asked by anonymous 17.11.2017 / 11:03

1 answer

2

To print the list you can use the following function:

var obj = {
    "posts": {
        "data": [
            {
                "created_time": "2017-11-16T19:52:28+0000",
                "message": "Teste | JAGUAFRANGOS | A Agência produziu os layouts, vídeo institucional e toda a cobertura do desfile em comemoração ao aniversário de 70 anos de Jaguapitã e aos 25 anos da JAGUAFRANGOS na cidade.                                     
17.11.2017 / 11:57