Are there any samples out there for Adyen with ASP.NET Standard.. Looking specifically for the WebHook part. I am not using .Net Core and I would like to avoid it if possible.
I have managed to get the client side working based off the php version of this sample: https://github.com/Adyen/adyen-components-js-sample-code . (I am happy to share this with anyone who is interested.)
What I need now is a concrete answer on : Can the webhook be made to work with ASP.NET .NET Standard?
.Net Core is so simple with this line:
// Return a 202 status with an empty response body
return Accepted();
How do I do the same in .Net Standard ?
I have tried this :
protected void Page_Load(object sender, EventArgs e)
{
Response.ContentType = ""; // not sure what = its not json
Response.Write ( HttpStatusCode.Accepted);
// this doesnt work because I want to return the code not write it as body.. not sure how to do this.
}
The above result in postman says this :

What I really want is how .Net Core does it like this :

You can leave the body empty and use the following line:
Adyen sends webhooks to your server-url. This means that your backend needs a way to deserialize the json-payload and verify the HMAC signature using the
ADYEN_HMAC_KEY, see Adyen Docs on Webhooks.For receiving Adyen webhooks, I recommend to look into ASP .NET Core to expose an API-endpoint that can receive this
POST-request securely. Assuming you have a different way to accept thesepayloads in your application, you need to do two steps:Here's an example if you prefer to deserialize it yourself:
You can then access:
Let me know if this helped