How To Read The Stripe Webhook Response
I have created the coldfusion file to catch the STRIPE webhook response.
Solution 1:
I do something like this:
<cfscript>
variables.requestdata = getHTTPRequestData();
variables.sStripeData = toString(variables.requestdata.content);
variables.stStripeData = deserializeJSON(variables.sStripeData);
</cfscript>
Post a Comment for "How To Read The Stripe Webhook Response"