Tagged Questions
0
votes
1answer
72 views
Get Youtube data API for thumbnails with SimpleXML
I have the following code:
$rss = simplexml_load_file( 'http://gdata.youtube.com/feeds/api/playlists/PLEA1736AA2720470C?v=2&prettyprint=true' );
foreach ( $rss->entry as $entry ) {
// get ...
1
vote
3answers
483 views
Get XML Attribute with SimpleXML
I'm trying to get the $xml->entry->yt:statistics->attributes()->viewCount attribute, and I've tried some stuff with SimpleXML, and I can't really get it working!
Attempt #1
<?php
$xml ...
-2
votes
1answer
263 views
Read YouTube XML with SimpleXML [closed]
I want to read/retrieve some details from a single YouTube video using:
$sxml= simplexml_load_file("http://gdata.youtube.com/feeds/api/videos/gzDS-Kfd5XQ");
How can i read the tags from the XML ...
0
votes
2answers
1k views
Fetch video id's from a youtube playlist using PHP-SimpleXML
I'm fetching a few videos from a Youtube playlist using SimpleXML and the Youtube API. I managed to get the title of each video but can´t figure out how to get the video IDs.
How do I get the ...
1
vote
5answers
872 views
SimpleXML loop works but breaks half way through
I have a loop going through results from a youtube feed and it works fine but towards the end it fails with the error:
Warning: main() [function.main]: Node no longer exists in ../youtubereader.php ...
2
votes
4answers
4k views
SimpleXML returning multiple objects, how can I get the data?
I'm using simpleXML to parse this xml file. It's a feed I'm using to access the YouTube API. I want to embed the most recent video in an object and display the next four thumbnails.
So I'm using ...
1
vote
1answer
798 views
Scraping YouTube XML to embed via SimpleXML—where am I going wrong?
I'm trying to use this query to find the precise videos I want via XML, then I'm looking to parse the values with SimpleXML and insert them in the DOM via this method.
I was experiencing a strange ...