使用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
连接规范返回源的连接器属性,包括与创建基础连接和源连接相关的验证规范。 Microsoft SQL Server的连接规范ID为
1f372ff9-38a4-4492-96f5-b9a4e4bd00ec
。有关获取连接字符串的详细信息,请参阅此Microsoft SQL Server 文档。
使用平台API
有关如何成功调用平台API的信息,请参阅平台API快速入门指南。
创建基本连接
基本连接会保留您的源和平台之间的信息,包括源的身份验证凭据、连接的当前状态以及唯一的基本连接ID。 基本连接ID允许您浏览和浏览源中的文件,并标识要摄取的特定项目,包括有关其数据类型和格式的信息。
要创建基本连接ID,请在提供Microsoft SQL Server身份验证凭据作为POST参数的一部分时,向/connections
端点请求请求。
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
与您的Microsoft SQL Server帐户关联的连接字符串。 有关详细信息,请阅读有关收集所需凭据的部分。
connectionSpec.id
Microsoft SQL Server连接规范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:
recommendation-more-help
337b99bb-92fb-42ae-b6b7-c7042161d089