Asp.Net Webhook Subscription outside the webhook project

931 Views Asked by At

I have created a webhook custom sender project as described in here. When I try to subscribe to the webhook using postman I get a login error. As per my understanding to subscribe, I must provide a dashboard sort of thing where users come and subscribe to events. I want the user to call the subscription API directly from there own app. how I can do that? I don't see any documentation which tells me about all the parameters in the subscription request. need help.

1

There are 1 best solutions below

2
On

You get the login error because you probably decorated the controller with Authorize attribute and you need to be logged in in order to access the actions within. You can replace AllowAnonymous attribute if you don't need to be logged in.

If you do, then login normally on the site and grab that cookie(token, etc.) which holds the authentication information and send that along with the Postman request.