13
I am trying to receive an external JSON file via PHP. I am doing so:
<?php
$json_file = file_get_contents(
"http://www.moonwalk.com.br/api/VitrineDeProdutos/58e903df295cbc5c4639434d4c35090d");
$json_str = json_decode($json_file, true);
$itens = $json_str->nodes;
foreach ( $itens as $e )
{ echo "$e->title<br>"; }
?>
But I’m not getting any results.
The external JSON files are at this address.
I’m doing something wrong?
Eu não posso responder, mais essa é uma boa formas, veja uma api de cotação como exemplo: <?php 
$json_str = file_get_contents("https://economia.awesomeapi.com.br/json/all/USD-BRL,EUR-BRL"); 
$jsonObj = json_decode($json_str);
$usd = $jsonObj->USD;
$eur = $jsonObj->EUR; ?>
– Macedo_Montalvão