如何使用连字符设置身份验证密钥

时间:2018-01-17 14:51:21

标签: zapier

我必须在用户登录时触发电子邮件。

我的登录API标头需要以下数据

Content-Type => application/json
tenant-id => 
event-id => 
Device-id => 
Api-Key => 

当我将键设置为" Api-Key"它会抛出如下错误。

enter image description here

1 个答案:

答案 0 :(得分:0)

David来自Zapier平台团队。

我不确定哪个页面适合,但是当您希望API密钥在身份验证中时,看起来您正在添加触发器字段。

点击此处的文档:https://zapier.com/developer/documentation/v2/authentication/

如果您的标题中包含-标题,则可以按照here所述的脚本添加此标题

some_header_pre_poll: function(bundle) {
    var request = bundle.request;
    request.headers["X-Project-ID"] = bundle.trigger_fields.project_id || "None";
    return request;
  },