ak111in Posted April 1, 2012 Share Posted April 1, 2012 Hi, I want to get the list of twitter followers in xml form using the url http://api.twitter.com/1/followers/ids.xml?cursor=-1&screen_name=amodkumargupta I am using the code <?php $xml = new SimpleXMLElement('http://api.twitter.com/1/followers/ids.xml?cursor=-1&screen_name=amodkumargupta',NULL,TRUE); foreach ($xml->ids->id as $id) { echo "Found $id<br />"; } ?> But getting the following error: Warning: SimpleXMLElement::__construct(http://api.twitter.com/1/followers/ids.xml?cursor=-1&screen_name=amodkumargupta) [simplexmlelement.--construct]: failed to open stream: No connection could be made because the target machine actively refused it. in C:\xampp\htdocs\getids.php on line 2 Warning: SimpleXMLElement::__construct() [simplexmlelement.--construct]: I/O warning : failed to load external entity "http://api.twitter.com/1/followers/ids.xml?cursor=-1&screen_name=amodkumargupta" in C:\xampp\htdocs\getids.php on line 2 Fatal error: Uncaught exception 'Exception' with message 'String could not be parsed as XML' in C:\xampp\htdocs\getids.php:2 Stack trace: #0 C:\xampp\htdocs\getids.php(2): SimpleXMLElement->__construct('http://api.twit...', 0, true) #1 {main} thrown in C:\xampp\htdocs\getids.php on line 2 Someone please help with the error. Quote Link to comment https://forums.phpfreaks.com/topic/260132-get-twitter-data-in-xml-form/ Share on other sites More sharing options...
kazymjir Posted April 1, 2012 Share Posted April 1, 2012 This code works fine for me. Try to run it again, maybe it was temporary problem with Twitter servers. Quote Link to comment https://forums.phpfreaks.com/topic/260132-get-twitter-data-in-xml-form/#findComment-1333273 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.