Does Chilkat Support WebHooks?

Question:  I’ve been asked to write an application that supports WebHooks (asynchronous communications back to me) and RESTful API’s(synchronous send to them). Answer: Some REST API’s, such as Shopify, allow an application to create webhook subscriptions.  (See https://shopify.dev/apps/webhooks)  When some event happens, the service (such as Shopify) will send an HTTP POST request to your applicaton’s endpoint URL specified by […]

Receiving a Webhook JSON POST in Classic ASP

Question: I need to setup a page in Classic ASP to serve as a webhook endpoint listener in Classic ASP The form product we are using (Paperform) posts the data to our endpoint as a JSON post payload. https://help.paperform.co/en/articles/2073207-how-to-use-webhooks Submission payload Webhooks POST a JSON payload on submission to the webhook URL. The JSON payload looks like the following: { “data”: […]