问题标签 [integromat-apps]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
0 回答
65 浏览

email - 无法发送带有作为 Base64 链接附加 PDF 的电子邮件

我将 Integromat 与 Zoho Mail 一起用于我的设置。我收到一个 pdf 的 base64 输出,并将其用作电子邮件中链接的 href 属性。由于某种原因,电子邮件不会将其视为链接,而是显示整个内容。使用普通链接就可以了。

我无法正常使用 Integromat 添加附件。如果有人知道使用该设置(Integromat 和 Zoho)以一种或另一种方式发送 PDF 文件,将不胜感激。

我是这样做的: 图片

0 投票
1 回答
31 浏览

integromat - Webhook - 验证 - 验证是否允许 POST 请求的 OPTIONS 方法 - Integromat SDK

我需要验证来自 Integromat SDK 的 Webhook Attach

GoToConnect Webhook 注册又名 NotificationChannel需要来自OPTIONS请求的响应以验证它是否允许POST请求。

因此,我使用 Integromat SDK 编写 Webhook 定义,如下所示:

  • 网络挂钩 -api.imljson
  • 网络挂钩 -attach.imljson
  • 网络挂钩 -dettach.imljson

但它没有按预期工作

GoToConnect NotificationChannel 的应用程序模块 webhook 的打印

是否有正确的方法来完成对 OPTIONS 请求的验证?

0 投票
0 回答
33 浏览

google-sheets - 如何在仅当观察到的更改位于特定列的单元格中时才运行的 integromat 中的操作条件(-s)

我是 integromat 的新手。我在 google 表格中添加了 integromat 插件,并为“监视更改”触发器制作了 webhook。我可以创建条件或检查或过滤器以允许我在特定列中进行更改时执行操作吗?例如,我想跟踪列中的更改并将警报发送到松弛聊天提前谢谢你

0 投票
0 回答
17 浏览

woocommerce - 在 Integromat 如何获得 woocommerce 预订日期?

请点击这里查看屏幕截图

我如何在 integromat 中获取 woocommerce 预订日期我已经分享了截图,请看一下。

0 投票
0 回答
18 浏览

onedrive - The file name becomes "file.extension" whenever I upload a file to Onedrive using Integromat,

I'm trying to upload files (xlsx, docx, txt, pdf, img, etc.) saved in AWS cloud storage to OneDrive using the HTTP module (Get a file) in Integromat. enter image description here

enter image description here

enter image description here

The contents of the file are uploaded to OneDrive without any corruption, but the file name is always "file.extension".

Any type of file brought the same result.

When I check the Operation of Integromat, I found that the file name is "file.extension" at the time of Output of Get a file. enter image description here

I'm hoping you can point out what I'm doing wrong.

In addition, my colleague tried uploading a file with the same settings as above, and it was successfully uploaded with the correct file name.

Thank you.

0 投票
0 回答
21 浏览

json - 如何在 integromat 通信中添加 if 条件

integromat中,我有以下动作交流。在这个我想传递参数'custom_fields',只有它有一个值。我该如何做广告?即如果omit(parameters,\"email\",\"list_id\",\"contact_type\")没有值,我不想传递 'custom_fields' 参数

0 投票
0 回答
26 浏览

javascript - Integromat - 如何解析来自自定义 API 服务的错​​误消息

我在 Integromat 上设置了一个自定义应用程序,它集成了用于交付服务的自定义 API。

有时,某些模块由于地址错误(例如错误的邮政编码)而出错。API 响应的主体在 中存在特定问题body,但是在场景中,如果发生错误,我只会收到根本没有额外数据的 Integromat 错误,因此我必须使用 Integromat 开发工具手动重新运行场景以读取内容是问题所在。

在我的自定义 Integromat 应用程序中阅读不同错误结构的错误处理,我想使用自定义函数来解析响应正文

但我不明白如何捕捉保存数据的 3 个字段errorFieldCodeerrorTypeCodeerrorMessage.

使用以下代码段在模块中调用该函数:

我想在错误处理路径的模块中使用这些数据。

我应该如何编辑上面的函数以将正文解析为它包含的 3 字段?

这是一个屏幕截图,您可以在其中看到模块出现错误,响应正文包含我需要立即了解错误的信息(紫色边框),以及模块的输出(橙色边框)。

我无法操作响应主体,因为对于 Integromat 是错误的,它会用其数据填充输出字段。