使用Azure Data Factory从REST API获取数据

dag*_*run 6 api rest azure azure-data-factory cortana-intelligence

是否可以使用Azure Data Factory从REST API获取数据并将其插入Azure数据库表?

Ale*_*ith 10

数据工厂现在有一个http连接器,允许您对http端点进行GET或POST(带主体).

例如:

{
    "name": "HttpLinkedService",
    "properties":
    {
        "type": "Http",
        "typeProperties":
        {
            "authenticationType": "Anonymous",
            "url" : "https://en.wikipedia.org/wiki/"
        }
    }
}
Run Code Online (Sandbox Code Playgroud)