使用Flow Service API建立Azure Table Storage基本連線
NOTE
Azure Table Storage聯結器為Beta版。 如需使用Beta標籤聯結器的詳細資訊,請參閱來源概觀。
基礎連線代表來源和Adobe Experience Platform之間的已驗證連線。
本教學課程將逐步引導您使用Flow Service API為Azure Table Storage建立基礎連線的步驟。
快速入門
本指南需要您深入了解下列 Adobe Experience Platform 元件:
下列章節提供您需瞭解的其他資訊,才能使用Flow Service API成功連線到Azure Table Storage。
收集必要的認證
為了讓Flow Service與Azure Table Storage連線,您必須提供下列連線屬性的值:
認證
說明
connectionString
用來連線至Azure Table Storage執行個體的連線字串。 Azure Table Storage的連線字串模式為:
DefaultEndpointsProtocol=https;AccountName={ACCOUNT_NAME};AccountKey={ACCOUNT_KEY}
。connectionSpec.id
連線規格會傳回來源的聯結器屬性,包括與建立基礎連線和來源連線相關的驗證規格。 Azure Table Storage的連線規格識別碼為
ecde33f2-c56f-46cc-bdea-ad151c16cd69
。如需有關取得連線字串的詳細資訊,請參閱此 Azure Table Storage 檔案。
使用平台API
如需如何成功呼叫Platform API的詳細資訊,請參閱Platform API快速入門的指南。
建立基礎連線
基礎連線會保留您的來源和平台之間的資訊,包括來源的驗證認證、連線的目前狀態,以及您唯一的基本連線ID。 基礎連線ID可讓您從來源內部探索及導覽檔案,並識別您要擷取的特定專案,包括其資料型別和格式的資訊。
若要建立基底連線ID,請在提供Azure Table Storage驗證認證作為要求引數的一部分時,向/connections
端點提出POST要求。
API格式
POST /connections
要求
下列要求會建立Azure Table Storage的基礎連線:
curl -X POST \
'https://platform.adobe.io/data/foundation/flowservice/connections' \
-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}' \
-H 'Content-Type: application/json' \
-d '{
"name": "Azure Table Storage connection",
"description": "Azure Table Storage connection",
"auth": {
"specName": "Connection String Based Authentication",
"params": {
"connectionString": "DefaultEndpointsProtocol=https;AccountName={ACCOUNT_NAME};AccountKey={ACCOUNT_KEY}"
}
},
"connectionSpec": {
"id": "ecde33f2-c56f-46cc-bdea-ad151c16cd69",
"version": "1.0"
}
}'
參數
說明
auth.params.connectionString
用來連線至Azure Table Storage執行個體的連線字串。 Azure Table Storage的連線字串模式為:
DefaultEndpointsProtocol=https;AccountName={ACCOUNT_NAME};AccountKey={ACCOUNT_KEY}
。connectionSpec.id
Azure Table Storage連線規格識別碼:
ecde33f2-c56f-46cc-bdea-ad151c16cd69
。回應
成功的回應會傳回新建立連線的詳細資料,包括其唯一識別碼(id
)。 在下個教學課程中探索您的資料時,需要此ID。
{
"id": "82abddb3-d59a-436c-abdd-b3d59a436c21",
"etag": "\"7d00fde3-0000-0200-0000-5e84d9430000\""
}
後續步驟
依照此教學課程,您已使用Flow Service API建立Azure Table Storage基礎連線。 您可以在下列教學課程中使用此基本連線ID:
recommendation-more-help
337b99bb-92fb-42ae-b6b7-c7042161d089