Now that you have an Application ID, you are ready to create your web application. It will do the following tasks:
All of these six important tasks will be covered in this tutorial series. It will help you develop easy, useful and even advanced inbound link-related analysis using the Yahoo Site Explorer Link API. To make a request to the Yahoo API is like sending a GET request. This type of request is done by appending parameters in the URL. These parameters are variables which can be changed depending on the intent of the application. Based on official Yahoo documentation on making a request, the official request URL is this: http://search.yahooapis.com/SiteExplorerService/V1/inlinkData The above URL is a standard and should NOT be altered. It is the official request URL for the Yahoo Inbound Links API. Now, since this is a form of GET request, to append your application ID (which will be needed for authentication), add a "?" string to the official request URL: http://search.yahooapis.com/SiteExplorerService/V1/inlinkData?appid= Your Application ID is just one of the request parameter/variables you can append. The official list of parameters can be found at the link under "Request Parameters." Based on the request parameters, "appID" (application ID) and "query" are required; all others are optional, except when your application needs them. Example: If you would like the Yahoo Inbound Link API to send you the data for the domain http://www.php-developer.org , and you need five results as well as having the output be compatible with PHP, the following is the final request URL (with parameters and value): http://search.yahooapis.com/SiteExplorerService/V1/inlinkData?appid=
blog comments powered by Disqus |