0
XugoWebTeam created
Hi Team,
Is there any way to receive external notifications via webhook on the server side? How can I get pass the authorization and receive the data?
Thanks
1 Answer(s)
-
0
Hi,
You have 2 options;
1- Create a user in AspNet Zero project for WebHook client. And authenticate it via ExternalAuthentication. When authentication is successful make request to AspNet Zero.
2- [RECOMMENDED] If you don't want to authenticate the user (as some 3rd party web apps cannot authenticate to your system) So create an AbpController or ApplicationService with anonymous access. You can disable authorization for a method/class by adding AbpAllowAnonymousattribute to application services.