Skip to content

Instantly share code, notes, and snippets.

View PeterKottas's full-sized avatar

Peter Kottas PeterKottas

View GitHub Profile
@PeterKottas
PeterKottas / Impala webhook verification - dot net core
Last active August 29, 2019 20:45
Attribute that helps with verifying Impala webhooks in dot net core
public static class ImpalaHeaderContants
{
public const string XImpalaSignature = "X-Impala-Signature";
}
public class ImpalaConfigDTO
{
public string ApiKey { get; set; }
public string WebhookSecret { get; set; }