0

我正在尝试在此处使用 SendInBlue API 发送事件。

当我发送事件时,它会正确返回 204 - 但我在这里没有收到任何事件,我创建了一个由事件触发的自动化流程,但它不发送。

const axios = require("axios");
const url = 'https://in-automate.sendinblue.com/api/v2/trackEvent';

(async() => {
    try {
       const event =  await axios.post(
            url,
            JSON.stringify(            {
                email: 'myemail@emailprovider.co',
                event: 'USER_SUBSCRIBED'
              }),
              {
                Accept: 'application/json',
                'Content-Type': 'application/json',
                'ma-key': 'xkeysib-MY_v3_API_KEY'
              },
        );
            
    console.log(event);
    } catch (err) {
        console.log(JSON.stringify(err))
    }
})();

有没有一种方法可以让我在控制台上看到来自此调用的事件?

4

1 回答 1

0

ma-key 与 API KEY 不同。您应该使用 ma-key 而不是您当前的 API 作为自动化密钥。经过几封邮件和一个电话后,我弄清楚了 ma-key 在哪里:

您应该在 send inblue 处登录。单击自动化(顶部菜单)。单击配置(左侧选项卡栏)。单击“查看跟踪代码”之类的内容。然后,您会看到一个 JS 代码。在这段代码中,有一个键。这是你的钥匙。

我的小组是西班牙语,所以可能单词不一样。干杯。

于 2021-11-18T10:36:55.490 回答