使用Flow Service API浏览广告系统
在创建基本连接后,您现在可以使用唯一的基本连接ID来导航和浏览源的数据结构和内容。 这允许您在创建数据流并将它们引进Adobe Experience Platform之前,识别特定项目及其各自的数据类型和格式。
本教程使用Flow Service API来浏览广告系统。
快速入门
IMPORTANT
本教程要求您拥有广告源的唯一基本连接ID。 如果您没有此ID,请参阅有关将广告源连接到Platform的教程。
本指南要求您对 Adobe Experience Platform 的以下组件有一定了解:
以下部分提供了使用Flow Service API成功连接到广告系统所需了解的其他信息。
使用平台API
有关如何成功调用平台API的信息,请参阅平台API快速入门指南。
浏览您的数据表
通过使用广告系统的基本连接,您可以通过执行GET请求来浏览数据表。 使用以下调用查找要检查或纳入Platform的表的路径。
API格式
GET /connections/{BASE_CONNECTION_ID}/explore?objectType=root
参数
描述
{BASE_CONNECTION_ID}
广告系统的基本连接的ID。
请求
curl -X GET \
'https://platform.adobe.io/data/foundation/flowservice/connections/2484f2df-c057-4ab5-84f2-dfc0577ab592/explore?objectType=root' \
-H 'Authorization: Bearer {ACCESS_TOKEN}' \
-H 'x-api-key: {API_KEY}' \
-H 'x-gw-ims-org-id: {ORG_ID}' \
-H 'x-sandbox-name: {SANDBOX_NAME}'
响应
成功的响应是从到广告系统的大量表。 查找要引入Platform的表并记下其path
属性,因为您需要在下一步中提供该表以检查其结构。
[
{
"type": "table",
"name": "v201809.ACCOUNT_PERFORMANCE_REPORT",
"path": "v201809.ACCOUNT_PERFORMANCE_REPORT",
"canPreview": true,
"canFetchSchema": true
},
{
"type": "table",
"name": "v201809.ADGROUP_PERFORMANCE_REPORT",
"path": "v201809.ADGROUP_PERFORMANCE_REPORT",
"canPreview": true,
"canFetchSchema": true
},
{
"type": "table",
"name": "v201809.AD_CUSTOMIZERS_FEED_ITEM_REPORT",
"path": "v201809.AD_CUSTOMIZERS_FEED_ITEM_REPORT",
"canPreview": true,
"canFetchSchema": true
},
{
"type": "table",
"name": "v201809.AD_PERFORMANCE_REPORT",
"path": "v201809.AD_PERFORMANCE_REPORT",
"canPreview": true,
"canFetchSchema": true
}
]
Inspect表的结构
要从广告系统中检查表的结构,请在将表的路径指定为查询参数时执行GET请求。
API格式
GET /connections/{BASE_CONNECTION_ID}/explore?objectType=table&object={TABLE_PATH}
参数
描述
{BASE_CONNECTION_ID}
广告系统的连接ID。
{TABLE_PATH}
广告系统中表的路径。
请求
curl -X GET \
'https://platform.adobe.io/data/foundation/flowservice/connections/2484f2df-c057-4ab5-84f2-dfc0577ab592/explore?objectType=table&object=v201809.AD_PERFORMANCE_REPORT' \
-H 'Authorization: Bearer {ACCESS_TOKEN}' \
-H 'x-api-key: {API_KEY}' \
-H 'x-gw-ims-org-id: {ORG_ID}' \
-H 'x-sandbox-name: {SANDBOX_NAME}'
响应
成功的响应将返回表的结构。 有关每个表列的详细信息位于columns
数组的元素中。
{
"format": "flat",
"schema": {
"columns": [
{
"name": "CallOnlyPhoneNumber",
"type": "string",
"xdm": {
"type": "string"
}
},
{
"name": "AdGroupId",
"type": "long",
"xdm": {
"type": "integer",
"minimum": -9007199254740992,
"maximum": 9007199254740991
}
},
{
"name": "AdGroupName",
"type": "string",
"xdm": {
"type": "string"
}
},
{
"name": "Date",
"type": "string",
"meta:xdmType": "date-time",
"xdm": {
"type": "string",
"format": "date-time"
}
},
]
}
}
后续步骤
通过完成本教程,您已探索广告系统,找到要引入Platform的表的路径,并获取有关其结构的信息。 您可以在下一个教程中使用此信息从广告系统收集数据并将其带入Platform。
recommendation-more-help
337b99bb-92fb-42ae-b6b7-c7042161d089