使用 Azure 数据工厂从 REST API 获取数据 [英] Using Azure Data Factory to get data from a REST API

查看:68
本文介绍了使用 Azure 数据工厂从 REST API 获取数据的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

是否可以使用 Azure 数据工厂从 REST API 获取数据并将其插入到 Azure 数据库表中?

Is it possible to use Azure Data Factory to get data from a REST API and insert it to a Azure database table?

推荐答案

数据工厂提供了一个通用的HTTP 连接器 和特定的 REST 连接器,允许您检索数据使用 GET 或 POST 方法从 HTTP 端点发送.

Data factory offers a generic HTTP connector and a specific REST connector, allowing you to do retrieve data from HTTP endpoints by using GET or POST methods.

示例:HTTP 链接服务

Example: HTTP Linked Service

{
    "name": "HttpLinkedService",
    "properties":
    {
        "type": "Http",
        "typeProperties":
        {
            "authenticationType": "Anonymous",
            "url" : "https://en.wikipedia.org/wiki/"
        }
    }
}

这篇关于使用 Azure 数据工厂从 REST API 获取数据的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆