是否可以使用 Azure 数据工厂从 REST API 获取数据并将其插入到 Azure 数据库表中?
最佳答案
数据工厂提供了一个通用的 HTTP connector 和一个
特定的 REST connector ,允许您使用 GET 或 POST 方法从 HTTP 端点检索数据。
示例:HTTP 链接服务
{
"name": "HttpLinkedService",
"properties":
{
"type": "Http",
"typeProperties":
{
"authenticationType": "Anonymous",
"url" : "https://en.wikipedia.org/wiki/"
}
}
}
关于api - 使用 Azure 数据工厂从 REST API 获取数据,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/35551533/