SendGrid api 电子邮件 activity 需要响应授权
SendGrid api email activity response authorization required
我有一个 sendgrid 帐户,其中包含 7 天的电子邮件历史记录。
我尝试使用 api 命令获取这些:
var sendgridtask = sendgridclient.RequestAsync(method: SendGrid.SendGridClient.Method.GET, urlPath: "messages?limit=10");
但这给出了响应:
{"errors":[{"message":"authorization required"}]}
我猜 api 键不正确,但是当我尝试执行命令时:
var sendgridtask = sendgridclient.RequestAsync(method: SendGrid.SendGridClient.Method.GET, urlPath: "suppression/bounces/" + email);
它没有给出错误并响应正确的信息。
我检查了 api 密钥,它具有完全访问权限。
我也试过:
sendgridclient.AddAuthorization(new KeyValuePair<string, string>("Authorization", $"Bearer {apiKey}"));
但这给出了相同的响应
你知道我做错了什么吗?
已从 SendGrid 得到答案:
Unfortunately in order to gain access to the Email Activity Feed API, you must purchase additional email activity history.
Or you can use our event webhook for your activity. https://sendgrid.com/docs/for-developers/tracking-events/getting-started-event-webhook/
因此,我们的许可证包含的历史记录似乎只能从 SendGrid 网站访问,如果没有额外的许可证,则无法从 API 访问。
我有一个 sendgrid 帐户,其中包含 7 天的电子邮件历史记录。 我尝试使用 api 命令获取这些:
var sendgridtask = sendgridclient.RequestAsync(method: SendGrid.SendGridClient.Method.GET, urlPath: "messages?limit=10");
但这给出了响应:
{"errors":[{"message":"authorization required"}]}
我猜 api 键不正确,但是当我尝试执行命令时:
var sendgridtask = sendgridclient.RequestAsync(method: SendGrid.SendGridClient.Method.GET, urlPath: "suppression/bounces/" + email);
它没有给出错误并响应正确的信息。 我检查了 api 密钥,它具有完全访问权限。
我也试过:
sendgridclient.AddAuthorization(new KeyValuePair<string, string>("Authorization", $"Bearer {apiKey}"));
但这给出了相同的响应
你知道我做错了什么吗?
已从 SendGrid 得到答案:
Unfortunately in order to gain access to the Email Activity Feed API, you must purchase additional email activity history.
Or you can use our event webhook for your activity. https://sendgrid.com/docs/for-developers/tracking-events/getting-started-event-webhook/
因此,我们的许可证包含的历史记录似乎只能从 SendGrid 网站访问,如果没有额外的许可证,则无法从 API 访问。