Sengrid API

Vladimir99

Client
Регистрация
14.02.2019
Сообщения
34
Благодарностей
2
Баллы
8
Hello i need some help with sengrid api :

curl --request POST \
--url https://api.sendgrid.com/v3/mail/send \
--header 'Authorization: Bearer YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--data '{"personalizations": [{"to": [{"email": "[email protected]"}]}],"from": {"email": "[email protected]"},"subject": "Hello, World!","content": [{"type": "text/plain", "value": "Heya!"}]}'

But i need to create an environment variable before :

export SENDGRID_API_KEY='YOUR_API_KEY'

I try to do POST Action with field below:
URL : https://api.sendgrid.com/v3/mail/send
data : {"personalizations": [{"to": [{"email": "[email protected]"}]}],"from": {"email": "[email protected]"},"subject": "Hello, World!","content": [{"type": "text/plain", "value": "Heya!"}]}
User Agent :
Authorization: Bearer my api id
Content-Type: application/json

But i have error :

HTTP/1.1 401 Unauthorized
Server: nginx
Date: Fri, 10 Jan 2020 09:14:08 GMT
Content-Type: application/json
Content-Length: 88
Connection: keep-alive
Access-Control-Allow-Origin: https://sendgrid.api-docs.io
Access-Control-Allow-Methods: POST
Access-Control-Allow-Headers: Authorization, Content-Type, On-behalf-of, x-sg-elas-acl
Access-Control-Max-Age: 600
X-No-CORS-Reason: https://sendgrid.com/docs/Classroom/Basics/API/cors.html

"When you have a browser-only application that reaches out to APIs, the API key has to be embedded in the application. Anyone with access to a browser-only application can access all of the Javascript source code, including your API keys.
Making your API key publicly accessible could result in anyone authenticating API calls with your API key — this is a significant security concern both for you and SendGrid."


How i can fix it ?

I can use javascript too : Update the development environment (user space) with your SENDGRID_API_KEY.


// using SendGrid's C# Library
// https://github.com/sendgrid/sendgrid-csharp
using SendGrid;
using SendGrid.Helpers.Mail;
using System;
using System.Threading.Tasks;

namespace Example
{
internal class Example
{
private static void Main()
{
Execute().Wait();
}

static async Task Execute()
{
var apiKey = Environment.GetEnvironmentVariable("NAME_OF_THE_ENVIRONMENT_VARIABLE_FOR_YOUR_SENDGRID_KEY");
var client = new SendGridClient(apiKey);
var from = new EmailAddress("[email protected]", "Example User");
var subject = "Sending with SendGrid is Fun";
var to = new EmailAddress("[email protected]", "Example User");
var plainTextContent = "and easy to do anywhere, even with C#";
var htmlContent = "<strong>and easy to do anywhere, even with C#</strong>";
var msg = MailHelper.CreateSingleEmail(from, to, subject, plainTextContent, htmlContent);
var response = await client.SendEmailAsync(msg);
}
}
}
 

Maddo7

Client
Регистрация
09.05.2015
Сообщения
109
Благодарностей
5
Баллы
18
Authorization: Bearer needs to be your API KEY, do you do this?
To help further, I would need to get the request headers from the traffic tab.
 

Кто просматривает тему: (Всего: 1, Пользователи: 0, Гости: 1)