モバイル App Store サービス
Mobile App Store Service は、システムに登録されているすべてのモバイル アプリ ストアを表示するために使用できる読み取り専用サービスです。
REST API
HTTP メソッド | エンドポイント | 説明 |
---|---|---|
GET |
https://api.appnexus.com/mobile-app-store?id=3 |
1 つのアプリ ストアを表示する |
GET |
https://api.appnexus.com/mobile-app-store |
システムに登録されているすべてのアプリ ストアを表示する |
JSON フィールド
名前 | 型 | 説明 |
---|---|---|
id |
int | アプリ ストアの ID。 |
last_modified |
date | このアプリ ストアの説明がシステムで最後に更新されたとき。 |
name |
string | アプリ ストアの名前。 |
os_family_id |
int | このアプリ ストアを使用するオペレーティング システムのオペレーティング システム ファミリ ID。 |
os_family_name |
string | このアプリ ストアを使用する OS のオペレーティング システム ファミリ名。 |
url |
string | アプリ ストアに関連付けられている URL。 |
例
システムに登録されているすべてのアプリ ストアを表示する
システムに登録されているすべてのアプリ ストアを 1 つの GET
要求で確認できます。
$ curl -b cookies https://api.appnexus.com/mobile-app-store
{
"response": {
"status": "OK",
"count": 1,
"start_element": 0,
"num_elements": 100,
"mobile-app-stores": [
{
"id": 1,
"name": "Android",
"url": "https://play.google.com",
"last_modified": "2013-10-24 13:50:20",
"os_family_id": 1,
"os_family_name": "Unknown"
}
],
...
}
}