Home arrow PHP arrow Page 5 - Using the Yahoo Site Explorer Inbound Links API

Understanding the Inbound Link Explorer API Response - PHP

The Yahoo Site Explorer API offers useful data for anyone who is trying to do well in the search engines. The trick is getting that data into a form you can use. Keep reading to learn how to build an application that will organize the information so you can analyze it.

TABLE OF CONTENTS:
  1. Using the Yahoo Site Explorer Inbound Links API
  2. The Inbound Links API Concept
  3. Getting Started: Yahoo Account and Your Application ID
  4. Making a Request to Yahoo API Using PHP
  5. Understanding the Inbound Link Explorer API Response
By: Codex-M
Rating: starstarstarstarstar / 2
November 12, 2009

print this article
SEARCH DEV SHED

TOOLS YOU CAN USE

advertisement

After receiving the request, the API will give a response back to your web server. The format of the response could be XML (default), JSON or PHP. You can instruct the Yahoo Site Explorer API to give your the desired response format by incorporating this parameter into your request (see example above):

Output=[yourresponseformat eg. PHP, JSON or XML]

A PHP response will be used in this tutorial. Below are the most important response variables and their significance to SEO:

TotalResultsAvailable. This is the total number of back links pointing to the domain or a certain URL in your domain; it depends on what you are requesting. If you have this data, it highly correlates with the website's link popularity.

Title. This is the title of the linking page. By using this data properly, you can measure the relevance of the linking page with respect to your domain. The relevance of the page is one of the most important elements of back links.

URL. This is the URL of the back link page. By using this response, you can use this data to further check the back linking domain, such as the age of the domain, registration, number of indexed pages, Page Rank, etc., which can be used to measure the authority and trust of the back linking domain.

This concludes the first part. In the second part, you will learn how to formulate your PHP script to make requests and receive the response from the Site Explorer API.



 
 
>>> More PHP Articles          >>> More By Codex-M
 

blog comments powered by Disqus
   

PHP ARTICLES

- PHP Closures as View Helpers: Lazy-Loading F...
- Using PHP Closures as View Helpers
- PHP File and Operating System Program Execut...
- PHP: Effects of Wrapping Code in Class Const...
- PHP: Building Concrete Validators
- Sanitizing Input with PHP
- Executing Shell Commands with PHP
- Handling File Data with PHP
- File Security and Resources with PHP
- ArrayObject PHP Class Examples
- ArrayObject PHP Class: An Introduction
- Getting File System Data with PHP
- PHP Tools for Working with the File and Oper...
- Working with the File and Operating System w...
- PHP Proxy Patterns: Completing a Blog


© 2003-2012 by Developer Shed. All rights reserved. DS Cluster 4 - Follow our Sitemap

Dev Shed Tutorial Topics: