Fixed deploy, Added HH Auth on back-end #22

Merged
Lisoveliy merged 21 commits from dev into main 2025-07-16 20:21:02 +02:00
Showing only changes of commit a32bfb6e99 - Show all commits

View File

@ -42,7 +42,7 @@ public class HeadHunterService(ILogger<HeadHunterService> logger, IOptions<HeadH
using var client = new HttpClient();
var form = new Dictionary<string, string>
{
{ "client-id", _config.ClientId },
{ "client_id", _config.ClientId },
{ "client_secret", _config.Secret },
{ "code", authorizationCode },
{ "grant_type", "authorization_code" }