使用Flow Service API创建Azure File Storage基本连接
基本连接表示源和Adobe Experience Platform之间的已验证连接。
本教程将指导您完成使用Flow Service API为Azure File Storage创建基本连接的步骤。
快速入门
本指南要求您对 Adobe Experience Platform 的以下组件有一定了解:
以下部分提供使用Flow Service API成功连接到Azure File Storage所需了解的其他信息。
收集所需的凭据
为了使Flow Service与Azure File Storage连接,您必须提供以下连接属性的值:
凭据
描述
host
您正在访问的Azure File Storage实例的端点。
userId
对Azure File Storage端点具有足够访问权限的用户。
password
Azure File Storage实例的密码
connectionSpec.id
连接规范返回源的连接器属性,包括与创建基础连接和源连接相关的验证规范。 Azure File Storage的连接规范ID为:
be5ec48c-5b78-49d5-b8fa-7c89ec4569b8
。有关入门的详细信息,请参阅此Azure文件存储文档。
使用平台API
有关如何成功调用平台API的信息,请参阅平台API快速入门指南。
创建基本连接
基本连接会保留您的源和平台之间的信息,包括源的身份验证凭据、连接的当前状态以及唯一的基本连接ID。 基本连接ID允许您浏览和浏览源中的文件,并标识要摄取的特定项目,包括有关其数据类型和格式的信息。
要创建基本连接ID,请在提供Azure File Storage身份验证凭据作为POST参数的一部分时,向/connections
端点请求请求。
API格式
POST /connections
请求
以下请求为Azure File 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 File Storage connection",
"description": "An Azure File Storage test connection",
"auth": {
"specName": "Basic Authentication",
"params": {
"host": "{HOST}",
"userId": "{USER_ID}",
"password": "{PASSWORD}"
}
},
"connectionSpec": {
"id": "be5ec48c-5b78-49d5-b8fa-7c89ec4569b8",
"version": "1.0"
}
}'
属性
描述
auth.params.host
您正在访问的Azure File Storage实例的终结点……
auth.params.userId
对Azure File Storage端点具有足够访问权限的用户。
auth.params.password
Azure File Storage访问密钥。
connectionSpec.id
Azure File Storage连接规范ID:
be5ec48c-5b78-49d5-b8fa-7c89ec4569b8
。响应
成功的响应返回新创建的基本连接的详细信息,包括其唯一标识符(id
)。 在下一步创建源连接时需要此ID。
{
"id": "f9377f50-607a-4818-b77f-50607a181860",
"etag": "\"2f0276fa-0000-0200-0000-5eab3abb0000\""
}
后续步骤
通过学习本教程,您已使用Flow Service API创建了Azure File Storage连接并获取该连接的唯一ID值。 在学习如何使用流服务API探索第三方云存储时,您可以在下一个教程中使用此ID。
recommendation-more-help
337b99bb-92fb-42ae-b6b7-c7042161d089