REST 中的数据工厂动态内容 API 调用
Data Factory Dynamic Content in REST API Call
我正在进行 API 调用,一旦获得授权,我必须在后续调用中使用安全令牌。我正在使用变量“SecurityToken”来存储令牌。
作为调用的一部分,我还需要传递一个日期参数,它是 14 天前的日期,格式为 YYYY-MM-DD。
我已经构建了这个公式,但它不会 运行,它会从 运行ning
停止整个管道
动态内容:
@concat('https://MyAPIUrl/api/daily/UK?key=',variables('SecurityToken'),'&date=formatDateTime(addDays(utcnow(),-14),'yyyy-MM-dd')'¤cy_type=GBP&use_website_rounding=假')
错误:
{"code":"BadRequest","message":null,"target":"pipeline//runid/8990bb14-27f8-43e5-b7c0-1741204ff645","details":null,"error":null}
你能试试这个吗
@concat('https://MyAPIUrl/api/daily/UK?key=',variables('SecurityToken'),'&date=',formatDateTime(addDays(utcnow(),-14),'yyyy-MM-dd'),'¤cy_type=GBP&use_website_rounding=FALSE')
我正在进行 API 调用,一旦获得授权,我必须在后续调用中使用安全令牌。我正在使用变量“SecurityToken”来存储令牌。
作为调用的一部分,我还需要传递一个日期参数,它是 14 天前的日期,格式为 YYYY-MM-DD。
我已经构建了这个公式,但它不会 运行,它会从 运行ning
停止整个管道动态内容: @concat('https://MyAPIUrl/api/daily/UK?key=',variables('SecurityToken'),'&date=formatDateTime(addDays(utcnow(),-14),'yyyy-MM-dd')'¤cy_type=GBP&use_website_rounding=假')
错误: {"code":"BadRequest","message":null,"target":"pipeline//runid/8990bb14-27f8-43e5-b7c0-1741204ff645","details":null,"error":null}
你能试试这个吗
@concat('https://MyAPIUrl/api/daily/UK?key=',variables('SecurityToken'),'&date=',formatDateTime(addDays(utcnow(),-14),'yyyy-MM-dd'),'¤cy_type=GBP&use_website_rounding=FALSE')