Technology

Webhooks – HTTP based callback functions

A webhook is also known as a “reverse API.” It is a tool that enables one system or application to communicate and deliver real-time notifications about a specific event to another system or application. Webhook working mechanism is simple, Let’s understand it using below architecture diagram which differentiate between pooling (API) vs Webhook. Below is […]

Webhooks – HTTP based callback functions Read More »

JSONP – Javascript widgets

JSONP stands for JSON with Padding. Requesting a file from another domain can cause problems, due to cross-domain policy. Requesting an external script from another domain does not have this problem. JSONP uses this advantage, and request files using the script tag instead of the XMLHttpRequest object. Use cases Below is an example source code, How

JSONP – Javascript widgets Read More »

Scroll to Top