I have a Dotnet (core) application where I'm integrating Zapier. Now on Zapier's developer platform when I'm creating a new integration, the first step is Authentication where you have different types of auth, e.g. OAuth V2, Session Auth, etc. In my application, I authorize users and all the API calls using Dotnet's Identity Provider where I use User.Identity.IsAuthenticated
to check whether the user is signed in and the Authorize
attribute to verify an API call along with ClaimsPrincipal
.
I tried all types of auth provided in Zapier's developer portal but it fails. I would really appreciate some input about integrating Zapier with my application