stream-chat-go icon indicating copy to clipboard operation
stream-chat-go copied to clipboard

VerifyWebhook doesnt work

Open wesleycremonini opened this issue 1 year ago • 0 comments

Version: github.com/GetStream/stream-chat-go/v7 v7.0.0

func WebhookIsValid(r *http.Request) bool {
	body, _ := io.ReadAll(r.Body)
	signature := r.Header.Get("X-Signature")
	return globalClient.VerifyWebhook(body, []byte(signature))
}

This always returns false, am I doing something wrong?

wesleycremonini avatar Oct 17 '24 14:10 wesleycremonini