Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8678479
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 12, 20262026-06-12T20:43:56+00:00 2026-06-12T20:43:56+00:00

Hi im having problem parsing this pinterest JSON file, any ideas? thanks $json =

  • 0

Hi im having problem parsing this pinterest JSON file, any ideas? thanks


    $json = file_get_contents('http://pinterestapi.co.uk/jwmoz/boards');

    $obj = json_decode($json);
    foreach($obj->body as $item){
    $example = $item[0]->name;
    echo $example;
    }


    {
    "body":[
      {"name":"JMOZ",
      "href":"http:\/\/pinterest.com\/jwmoz\/jmoz\/",
      "num_of_pins":17,"cover_src":"http:\/\/media-cache-ec4.pinterest.com\/upload\/82190761920643849_2DcDfCUK_222.jpg",
      "thumbs_src":
          ["http:\/\/media-cache-ec5.pinterest.com\/upload\/82190761920643841_dZfvCWmE_t.jpg",
          "http:\/\/media-cache-ec4.pinterest.com\/upload\/82190761920194573_aPAbDtHD_t.jpg",
          "http:\/\/media-cache-ec2.pinterest.com\/upload\/82190761920194563_dQcOIHvQ_t.jpg",
          "http:\/\/media-cache0.pinterest.com\/upload\/82190761920194557_VSSI2uQB_t.jpg"
          ]
      },
      {"name":"JMOZ",
      "href":"http:\/\/pinterest.com\/jwmoz\/jmoz\/",
      "num_of_pins":17,"cover_src":"http:\/\/media-cache-ec4.pinterest.com\/upload\/82190761920643849_2DcDfCUK_222.jpg",
      "thumbs_src":
          ["http:\/\/media-cache-ec5.pinterest.com\/upload\/82190761920643841_dZfvCWmE_t.jpg",
          "http:\/\/media-cache-ec4.pinterest.com\/upload\/82190761920194573_aPAbDtHD_t.jpg",
          "http:\/\/media-cache-ec2.pinterest.com\/upload\/82190761920194563_dQcOIHvQ_t.jpg",
          "http:\/\/media-cache0.pinterest.com\/upload\/82190761920194557_VSSI2uQB_t.jpg"
          ]
      },     
      {"name":"JMOZ",
      "href":"http:\/\/pinterest.com\/jwmoz\/jmoz\/",
      "num_of_pins":17,"cover_src":"http:\/\/media-cache-ec4.pinterest.com\/upload\/82190761920643849_2DcDfCUK_222.jpg",
      "thumbs_src":
          ["http:\/\/media-cache-ec5.pinterest.com\/upload\/82190761920643841_dZfvCWmE_t.jpg",
          "http:\/\/media-cache-ec4.pinterest.com\/upload\/82190761920194573_aPAbDtHD_t.jpg",
          "http:\/\/media-cache-ec2.pinterest.com\/upload\/82190761920194563_dQcOIHvQ_t.jpg",
          "http:\/\/media-cache0.pinterest.com\/upload\/82190761920194557_VSSI2uQB_t.jpg"
          ]
      },
      {"name":"test I\u00f1t\u00ebrn\u00e2ti\u00f4n\u00e0liz\u00e6ti\u00f8n",
       "href":"http:\/\/pinterest.com\/jwmoz\/test-internationaliztin\/",
       "num_of_pins":0,
       "cover_src":false,
       "thumbs_src":false
       }],
      "meta":{"count":11}
      }

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-12T20:43:58+00:00Added an answer on June 12, 2026 at 8:43 pm

    It seems the problem is in your usage of the [0] index on $item

    $example = $item[0]->name;
    

    This should just be

    $example = $item->name;
    

    To access the thumbnails, try

    $obj = json_decode($json);
    foreach($obj->body as $item){
      echo '<li>' . $item->name . '<ul>';
      if(!empty($item->thumbs_src))
      {
        foreach($item->thumbs_src as $thumbs_src){
          echo '<li>' . $thumbs_src . '</li>';
        }
      }
      echo '</ul></li>';
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm having a problem parsing a JSON file in AS3. Im trying to parse
Hi I am currently having a problem with parsing an Xml string without any
Having a problem with parsing a CSV file. I connect to the file using
I'm having a problem parsing the JSON response from MySQL in Java. try {
Hello friends i am having problem in parsing jSON web services data I have
Am having a problem reading/parsing the following JSON string in Java. Code: try{ json
I am having a problem while parsing XML file,i used newsRSS parser as a
I am having some problems parsing this piece of XML using SimpleXML. There is
I'm having problems with parsing a decimal string to a byte. This is the
Additional questions regarding SilentGhost's initial answer to a problem I'm having parsing Twitter RSS

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.