• Hi, i want to import data from a LiveXML API service.

    service type info portal
    API version info 3.1
    search version info v2

    Please anyone can help me…

Viewing 1 replies (of 1 total)
  • Yes, possible with PHP..

    for example, below-function returns the “about” info of a YouTube channel

    function about_summary() {
    	$xmlData = file_get_contents( 'https://gdata.youtube.com/feeds/api/users/dvlotteryforum?v=2.1&prettyprint=true'; );
    	$xml = new SimpleXMLElement($xmlData) or die("Error");
    	echo $xml->summary;
    }

    source: Github.

    What type of data you want to retrieve ?

Viewing 1 replies (of 1 total)
  • The topic ‘Import Data from LiveXML Service’ is closed to new replies.