Remortgages - Loans - Car Finance - Loans - Mortgages

PDA

View Full Version : Yahoo API to get the backlinks from yahoo


thecheapsters
Apr 18th 2008, 12:01 pm
Hi,

i want to know that how to get the yahoo back links from yahoo using yahoo API in PHP, please hep me out the way to do that

Thanks

ezcat
Apr 24th 2008, 6:50 pm
Yeah, Me too... PM if you get this answer. Thanks!

ludacwisp
Apr 30th 2008, 7:24 am
function getYahooLinks($domain) {
$yahooAppId1 = "YOUR_YAHOO_KEY";
$yahoourl="http://search.yahooapis.com/SiteExplorerService/V1/inlinkData?appid=".$appid."&query=".$domain."&entire_site=1&omit_inlinks=domain&results=1&output=php";
$data = @file_get_contents($yahoourl);
$results=unserialize($data);
return $results['ResultSet']['totalResultsAvailable']; //$results[0][1];
}