gpt4 book ai didi

c# - 如何使用 sendgrid 在列表中添加联系人?

转载 作者:行者123 更新时间:2023-12-05 07:20:36 24 4
gpt4 key购买 nike

我正在尝试在列表中添加联系人,因此我使用下面的链接将单个收件人添加到列表中: click here

我有高级 100k 计划并使用完全访问 api key ,但仍然出现禁止错误。

请帮我解决这个问题。

我的代码

string data = @"[
{
'age': 25,
'email': 'example@example.com',
'first_name': '',
'last_name': 'User'
},
{
'age': 25,
'email': 'example2@example.com',
'first_name': 'Example',
'last_name': 'User'
}
]";
var client = new SendGridClient("#################");
var json = JsonConvert.DeserializeObject<Object>(data);
data = json.ToString();
var response = await client.RequestAsync(method: SendGridClient.Method.POST, urlPath: "contactdb/recipients", requestBody: data);
Console.WriteLine(response.StatusCode);
Console.WriteLine(response.Body.ReadAsStringAsync().Result);
Console.WriteLine(response.Headers.ToString());
Console.ReadLine();
return response;

最佳答案

您可以通过在 Send Grid 中编辑您的 API key 设置并为您需要访问该 API key 的功能启用权限来解决此问题。

API Keys settings

关于c# - 如何使用 sendgrid 在列表中添加联系人?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57461822/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com