El Comando curl es este
Código:
intente con este codigo pero me da error 403 FORBIDDENcurl -u user:password -d https://myanimelist.net/api/anime/search.xml?q=naruto
Código PHP:
$url = 'https://myanimelist.net/api/anime/search.xml?q=naruto';
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_USERPWD, "$username:$password");
curl_setopt($ch, CURLOPT_HTTPAUTH, CURLAUTH_BASIC);
$output = curl_exec($ch);
$info = curl_getinfo($ch);
curl_close($ch);
https://myanimelist.net/modules.php?go=api