- [アーティクル]
-
-
読み取り専用ブラウザー サービスを使用すると、システムに登録されているブラウザーを確認できます。 このサービスを使用すると、 プロファイル サービスを介してキャンペーンのターゲット設定用のブラウザーの ID を取得できます。
REST API
HTTP メソッド |
エンドポイント |
説明 |
GET |
https://api.appnexus.com/browser |
ターゲット設定に使用できるすべてのブラウザーを表示する |
GET |
https://api.appnexus.com/browser?search=SEARCH_TERM |
特定の文字を含む ID または名前を持つすべてのブラウザーを表示する |
GET |
https://api.appnexus.com/browser?id=BROWSER_ID |
特定のブラウザーを表示する |
GET |
https://api.appnexus.com/browser/meta |
フィルター処理および並べ替え可能なフィールドを確認する |
JSON フィールド
フィールド |
種類 |
説明 |
id |
int |
ブラウザーの ID。 |
is_aggregated |
ブール値 |
true の場合、Xandr はレポートでブラウザーのデータを集計します。 false の場合、通信事業者はレポートに "その他のブラウザー" として表示されます。 |
last_modified |
string |
ブラウザー エントリが最後に変更された日時。 |
name |
string |
ブラウザーの名前。 |
例
すべてのブラウザーを表示する
$ curl -b cookies -c cookies 'https://api.appnexus.com/browser'
{
"response": {
"status": "OK",
"start_element": 0,
"num_elements": 100,
"browsers": [
{
"id": 0,
"name": "Unknown",
"last_modified": "2012-11-27 15:32:33",
"is_aggregated": true
},
{
"id": 1,
"name": "Internet Explorer 8",
"last_modified": "2012-11-27 15:32:43",
"is_aggregated": true
},
{
"id": 2,
"name": "Internet Explorer 7",
"last_modified": "2012-11-27 15:32:43",
"is_aggregated": true
},
{
"id": 3,
"name": "Internet Explorer 6",
"last_modified": "2012-11-27 15:32:43",
"is_aggregated": true
},
...
]
}
}
特定のブラウザーを表示する
$ curl -b cookies -c cookies 'https://api.appnexus.com/browser?id=8'
{
"response": {
"status": "OK",
"start_element": 0,
"num_elements": 100,
"browser": {
"id": 8,
"name": "Chrome (all versions)",
"last_modified": "2012-11-27 15:32:43",
"is_aggregated": true
}
}
}
ブラウザーを検索する
$ curl -b cookies -c cookies 'https://api.appnexus.com/browser?search=firefox'
{
"response": {
"status": "OK",
"start_element": 0,
"num_elements": 100,
"browsers": [
{
"id": 5,
"name": "Firefox 4",
"last_modified": "2012-11-27 15:32:43",
"is_aggregated": true
},
{
"id": 6,
"name": "Firefox 3",
"last_modified": "2012-11-27 15:32:43",
"is_aggregated": true
},
{
"id": 7,
"name": "Firefox (other versions)",
"last_modified": "2012-11-27 15:32:43",
"is_aggregated": true
}
]
}
}