Skip to content

albeebe/php-appstore

Repository files navigation

php-appstore

PHP class with a bunch of functions to retrieve app details, ratings, reviews and rankings from the App Store

Questions/Comments? Follow me on Twitter @albeebe

Uses

Armed with nothing more then an App ID, you can pull a ton of information about the app from the App Store. Reviews, ratings, app details, ranking information and more! With a User ID you can also retrieve a users rating history!

example_app.php

include ("appstore.inc.php");

$appID = "577499909"; // Angry Birds
$country = "US"; // App Store to get data from

$_APPSTORE = new APPSTORE($appID, $country);
$arrReviews = $_APPSTORE->reviewsForPage(0);
$appName = $_APPSTORE->appName();
$appIcon = $_APPSTORE->appIcon();
$appDeveloper = $_APPSTORE->appDeveloper();
$appTotalStars = $_APPSTORE->appTotalStars();
$appTotalRatings = $_APPSTORE->appTotalRatings();
$appCurrentStars = $_APPSTORE->appCurrentStars();
$appCurrentRatings = $_APPSTORE->appCurrentRatings();
$appCategoryName = $_APPSTORE->appCategoryName();
$appCategoryID = $_APPSTORE->appCategoryID();
$appRankCategory = $_APPSTORE->appRankCategory();
$appRankCategoryGrossing = $_APPSTORE->appRankCategoryGrossing();

Here is a screenshot of example_app.php running on an iPhone, with Angry Birds set as the appID

example_user.php

include ("appstore.inc.php");

$userID = "243443889"; // SirGerman3
	
// Download the users 30 most recent reviews
$_APPSTORE = new APPSTORE();
$arrReviews = array();
for ($x = 0; $x < 5; $x++) {
	$arrReviewPage = $_APPSTORE->userReviewsForPage($userID, $x);
	if (sizeof($arrReviewPage) == 0) {
		break;
	} else {
		$arrReviews = array_merge($arrReviews, $arrReviewPage);
	}
}

Here is a screenshot of example_user.php running on an iPhone, with SirGerman3 set as the userID

License

The MIT License

Copyright (c) 2013 Alan Beebe

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

About

PHP class with a bunch of functions to retrieve app ratings from the App Store

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages