在Azure数据工厂内部,我通过REST复制活动调用microsoft图,利用REST获取服务的访问令牌。Graphapi最多返回200个结果,因此我对使用可以在源代码中创建的分页规则感兴趣。在post-man中,我可以看到我的响应结构是
{
"@odata.context" : <some context>,
"@odata.nextLink" : <the link to next page>
"value" : [<the response data on current page>]
}
我在文档中读到,我通过添加密钥来设置分页规则
AbsoluteUrl
然后将响应中给出的到下一页的路径作为值。我如何告诉azure数据工厂如何找到这个?
由于repsonse是json结构,的值
AbsoluteUrl
应该是
$['@odata.nextLink']