PHPackages                             rekkles/app-store-scrape - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. rekkles/app-store-scrape

ActiveLibrary

rekkles/app-store-scrape
========================

A Simple Way To Get AppStore Info

1.0.0(6y ago)4681MITPHP

Since Aug 19Pushed 5y ago1 watchersCompare

[ Source](https://github.com/justcodingnobb/app-store-scrape)[ Packagist](https://packagist.org/packages/rekkles/app-store-scrape)[ RSS](/packages/rekkles-app-store-scrape/feed)WikiDiscussions master Synced today

READMEChangelog (1)Dependencies (1)Versions (3)Used By (0)

 AppStore-Scrape
=================

[](#-appstore-scrape-)

[![Latest Stable Version](https://camo.githubusercontent.com/89267e1bd7628617f4fcd17df3c214a39477f35588a69dcb4f4b24363adffca4/68747470733a2f2f706f7365722e707567782e6f72672f72656b6b6c65732f6170702d73746f72652d7363726170652f762f737461626c65)](https://packagist.org/packages/rekkles/app-store-scrape)[![Total Downloads](https://camo.githubusercontent.com/ab8c4979db08c5b2874a9eea9111e928448f7532fd61a4e6b166494118d451f7/68747470733a2f2f706f7365722e707567782e6f72672f72656b6b6c65732f6170702d73746f72652d7363726170652f646f776e6c6f616473)](https://packagist.org/packages/rekkles/app-store-scrape)[![Latest Unstable Version](https://camo.githubusercontent.com/7645147f725e89a97c812c952ee95c9b2dd8c38d082ca8a10aa58ab0b1ead748/68747470733a2f2f706f7365722e707567782e6f72672f72656b6b6c65732f6170702d73746f72652d7363726170652f762f756e737461626c65)](https://packagist.org/packages/rekkles/app-store-scrape)[![License](https://camo.githubusercontent.com/3601a0b876a82436f98c49c6ccd043460f3407bcbb0f0d8eb14d925e7b68e03d/68747470733a2f2f706f7365722e707567782e6f72672f72656b6b6c65732f6170702d73746f72652d7363726170652f6c6963656e7365)](https://packagist.org/packages/rekkles/app-store-scrape)[![Monthly Downloads](https://camo.githubusercontent.com/93db1dff956a52907d00b70f198cd50ea484e4d3c893b5869ff65f7a739f92df/68747470733a2f2f706f7365722e707567782e6f72672f72656b6b6c65732f6170702d73746f72652d7363726170652f642f6d6f6e74686c79)](https://packagist.org/packages/rekkles/app-store-scrape)[![Daily Downloads](https://camo.githubusercontent.com/d0f8adf803231fbae64c8483527502ff58b1c0c65a38d3e7385a813b7344c165/68747470733a2f2f706f7365722e707567782e6f72672f72656b6b6c65732f6170702d73746f72652d7363726170652f642f6461696c79)](https://packagist.org/packages/rekkles/app-store-scrape)

Installing
----------

[](#installing)

```
$ composer require rekkles/app-store-scrape -vvv
```

Usage
-----

[](#usage)

获取指定 AppId 信息

```
use Rekkles\AppStoreScrape\AppStore;

$entity = 'software'; // 全部 App
$country = 'cn'; //地区,可参考https://rss.itunes.apple.com/zh-cn
$appId = '292374531'; // 请替换这个参数

//获取指定 AppId 信息
$app = AppStore::App()->getApp($appId,$entity,$country);

//获取指定 App 评论信息
$page = 1;//页码
$sort = 'RECENT'; //排序规则 RECENT(最近) or HELPFUL(最有用)
$comments = AppStore::Comments()->getComments($appId,$country,$page,$sort);

//获取开发者应用信息
$devId = 292374531;//开发者Id
$developer = AppStore::Developer()->getDeveloperMetadata($devId,$country);
//获取开发者下面 App 信息
$developerApp = AppStore::Developer()->getDevApp($devId,$country);

//获取 App 评分信息
$ratings = AppStore::Ratings()->getRatings($appId,$country);

//根据关键词搜索排名信息
$keyword = '微信';
$search = AppStore::Search()->getAppByKeyword($keyword);
//判断指定 App 在第几位
$search = AppStore::Search()->getAppRankByKeyword($keyword,$appId);

//获取排行榜信息 参考https://rss.itunes.apple.com/zh-cn
$config = [
    'region' => 'cn', //地区
    'mediaType' => 'ios-apps', //媒体类型
    'feedType' => 'top-free', //feed 类型
    'type' => 'games', //类型
    'limit' => 100, //限制条数
    'eighteenR' => true, //允许儿童不宜内容
  ];
$rss = AppStore::RSS()->getAppRankInfo();
```

Contributing
------------

[](#contributing)

You can contribute in one of three ways:

1. File bug reports using the [issue tracker](https://github.com/rekkles/app-store-scrape/issues).
2. Answer questions or fix bugs on the [issue tracker](https://github.com/rekkles/app-store-scrape/issues).
3. Contribute new features or update the wiki.

*The code contribution process is not very formal. You just need to make sure that you follow the PSR-0, PSR-1, and PSR-2 coding guidelines. Any new code contributions must be accompanied by unit tests where applicable.*

License
-------

[](#license)

MIT

###  Health Score

28

—

LowBetter than 54% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity14

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity59

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Unknown

Total

1

Last Release

2456d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/9dc8f2618dace677705ae6fc2c2ede85adb27189b9ecf105c7f3f6ee21d34643?d=identicon)[Rekkles](/maintainers/Rekkles)

---

Top Contributors

[![justcodingnobb](https://avatars.githubusercontent.com/u/16287171?v=4)](https://github.com/justcodingnobb "justcodingnobb (2 commits)")

---

Tags

appstorecomposer

### Embed Badge

![Health badge](/badges/rekkles-app-store-scrape/health.svg)

```
[![Health](https://phpackages.com/badges/rekkles-app-store-scrape/health.svg)](https://phpackages.com/packages/rekkles-app-store-scrape)
```

###  Alternatives

[neuron-core/neuron-ai

The PHP Agentic Framework.

1.8k245.3k20](/packages/neuron-core-neuron-ai)[tencentcloud/tencentcloud-sdk-php

TencentCloudApi php sdk

3731.2M42](/packages/tencentcloud-tencentcloud-sdk-php)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
