如何修复 Zapier 不显示 JSON 数组 GET API 响应中显示的所有动态下拉选项?
How to fix Zapier not showing all Dynamic Dropdown options that are presented in a JSON Array GET API Repsonse?
我正在为一个平台构建 Zapier 应用程序,该平台具有特定于个人用户的动态字段。
我的 API returns 此响应使用 GET 请求:
[
{
"title": "003 Best Selling Book",
"id": "d86cbdf41be958336f1221a2211c3f65",
"date": "03/25/2021"
},
{
"id": "b844eaa3da5c476ab7337e83775777e0",
"title": "002 Best Selling Book",
"date": "03/26/2021"
}
]
Zapier 成功收到响应
Response received by Zapier
但它只显示 JSON 数组中的第一项。
Only one object in my array shown.
当我去测试我的触发器时,它只显示我数组中的一个对象并给我一个缺失值!错误。
Missing Value Error in Zapier
有人知道如何解决这个问题吗?
我正在尝试设置动态下拉类型并使用触发器获取填充触发器的 JSON 对象。
A screenshot of the settings for the my dropdown from the Form Editor on the Zapier Platform Input Designer
我尝试在 Zapier Github 或 Whosebug 或网络上的其他地方寻找示例代码,这些代码显示了 Zapier 操作、Zapier 触发器和 Zapier 动态下拉列表的示例 JSON 响应,但找不到任何。
根据 the docs,您返回的 JSON 需要 name
和 id
属性。
我正在为一个平台构建 Zapier 应用程序,该平台具有特定于个人用户的动态字段。
我的 API returns 此响应使用 GET 请求:
[
{
"title": "003 Best Selling Book",
"id": "d86cbdf41be958336f1221a2211c3f65",
"date": "03/25/2021"
},
{
"id": "b844eaa3da5c476ab7337e83775777e0",
"title": "002 Best Selling Book",
"date": "03/26/2021"
}
]
Zapier 成功收到响应
Response received by Zapier
但它只显示 JSON 数组中的第一项。
Only one object in my array shown.
当我去测试我的触发器时,它只显示我数组中的一个对象并给我一个缺失值!错误。
Missing Value Error in Zapier
有人知道如何解决这个问题吗?
我正在尝试设置动态下拉类型并使用触发器获取填充触发器的 JSON 对象。
A screenshot of the settings for the my dropdown from the Form Editor on the Zapier Platform Input Designer
我尝试在 Zapier Github 或 Whosebug 或网络上的其他地方寻找示例代码,这些代码显示了 Zapier 操作、Zapier 触发器和 Zapier 动态下拉列表的示例 JSON 响应,但找不到任何。
根据 the docs,您返回的 JSON 需要 name
和 id
属性。