Ján Sokoly
Ján Sokoly
Some time ago, Gmail has [added an ability to categorize email using Inbox Categories](http://gmailblog.blogspot.sk/2013/05/a-new-inbox-that-puts-you-back-in.html). It looks like these are accessible using Inbox Feed by adding `/` to the feed url,...
FlexSlider is not compatible with jQuery 3.x. I've identified following 3 problems: - [jquery.fn.delegate()](http://api.jquery.com/delegate/) has been deprecated and superseded by [.on()](http://api.jquery.com/on/) - [jquery.fn.bind()](http://api.jquery.com/bind/) has been deprecated and superseded by [.on()](http://api.jquery.com/on/)...
While trying to enable HMAC security logic for webhook requests, I've stumbled on why something like this has no effect: ```c# await signNowContext.Events.CreateEventSubscriptionAsync(new CreateEventSubscription(EventType.DocumentFieldInviteSent, entityId, callbackUrl) { SecretKey = "SomeHmacSecretKey"...
[SignNow.Net/Model/EventType.cs](https://github.com/signnow/SignNow.NET/blob/7122c316be1fbcc019876f87da27f85c4af01522/SignNow.Net/Model/EventType.cs) only covers a subset of [webhooks supported by SignNow](https://docs.signnow.com/docs/signnow/guides-webhooks#entity-events). For example, `*.email.delivery.failed` webhooks are missing. I would like all webhooks to be available in the enumeration or at least...