使用Flow Service API建立Microsoft SQL Server基本連線
基礎連線代表來源和Adobe Experience Platform之間的已驗證連線。
閱讀本教學課程,瞭解如何使用Flow Service API為Microsoft SQL Server建立基礎連線。
快速入門
本指南需要您深入了解下列 Adobe Experience Platform 元件:
下列章節提供您需瞭解的其他資訊,才能使用Flow Service API成功連線到Microsoft SQL Server。
收集必要的認證 gather-required-credentials
若要連線到Microsoft SQL Server,您必須提供下列連線屬性:
connectionString
與您的Microsoft SQL Server帳戶關聯的連線字串。 您的連線字串模式取決於您是使用伺服器名稱或執行個體名稱作為資料來源:
- 使用伺服器名稱的連線字串:
Data Source={SERVER_NAME};Initial Catalog={DATABASE};Integrated Security=False;User ID={USER_ID};Password={PASSWORD};
- 使用執行個體名稱的連線字串:
Data Source={INSTANCE_NAME};Initial Catalog={DATABASE};Integrated Security=False;User ID={USER_ID};Password={PASSWORD};
Data Source=mssqlserver.database.windows.net;Initial Catalog=mssqlserver_e2e_db;Integrated Security=False;User ID=mssqluser;Password=mssqlpassword
connectionSpec.id
1f372ff9-38a4-4492-96f5-b9a4e4bd00ec
。如需有關取得連線字串的詳細資訊,請參閱此Microsoft SQL Server 檔案。
使用平台API
如需如何成功呼叫Platform API的詳細資訊,請參閱Platform API快速入門的指南。
建立基礎連線
基礎連線會保留您的來源和平台之間的資訊,包括來源的驗證認證、連線的目前狀態,以及您唯一的基本連線ID。 基礎連線ID可讓您從來源內部探索及導覽檔案,並識別您要擷取的特定專案,包括其資料型別和格式的資訊。
若要建立基底連線ID,請在提供Microsoft SQL Server驗證認證作為要求引數的一部分時,向/connections
端點提出POST要求。
API格式
POST /connections
要求
下列要求會建立Microsoft SQL Server的基礎連線:
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": "Base connection for sql-server",
"description": "Base connection for sql-server",
"auth": {
"specName": "Connection String Based Authentication",
"params": {
"connectionString": "Data Source=mssqlserver.database.windows.net;Initial Catalog=mssqlserver_e2e_db;Integrated Security=False;User ID=mssqluser;Password=mssqlpassword"
}
},
"connectionSpec": {
"id": "1f372ff9-38a4-4492-96f5-b9a4e4bd00ec",
"version": "1.0"
}'
auth.params.connectionString
connectionSpec.id
1f372ff9-38a4-4492-96f5-b9a4e4bd00ec
。回應
成功的回應會傳回新建立連線的詳細資料,包括其唯一識別碼(id
)。 在下個教學課程中探索您的資料庫時,需要此ID。
{
"id": "0b8224e4-0de8-4293-8224-e40de80293c6",
"etag": "\"5802c519-0000-0200-0000-5e4d89520000\""
}
後續步驟
依照此教學課程,您已使用Flow Service API建立Microsoft SQL Server基礎連線。 您可以在下列教學課程中使用此基本連線ID: