Hi all, I have seen that some developers are facing problems in developing with the Yahoo API and I have written a simple tutorial to illustrate. My example uses PHP with serialised output (which is the easiest to understand and implement) along with the Inbound Links API. Please feel free to visit my Yahoo API tutorial. Hope it helps
Do you mean by Yahoo API? Then yes, this is the only way. The other external alternatives are to scrap the results from the respective search engine pages where it shows the total amount of returned results for the link: operator.
Well if I use the link:website command on google, it doesn't display all the incoming links. It usually displays pages from within the same website.
Cool post, I didn't know the API could do things like that. I always assumed it was just for setting up ads for some reason.
Cool post, I didn't know the API could do things like that. I always assumed it was just for setting up ads for some reason too.
ah, good - I know this is old but thanks for it. Been trying to sort out how to nab a specific element from the array, and yahoo's docs aren't too helpful.
Do you still need help after 436 days? WoW. I don't hope you have been sitting up all night(s) waiting for an answer
I use such code to learn if my script reached limit of searches $c - is unserialized content returned from yahoo by api request if(preg_match("#<Message>limit[^<]+exceeded</Message>#is", $c)) { echo 'Limit exceeded, need to change IP :-)'; } PHP: