What is server-to-server callback?

3

I would like to know if it is a concept, I am using a service that informed me that the information can be obtained via callback server-to-server, but I did not exactly understand the meaning of the term.     

asked by anonymous 29.06.2018 / 15:18

1 answer

4

You can specify the URL / endpoint / callback that you want to be notified with this callback after completion of a task.

It is also called Callback URL

For example, your system can call the third-party API, and in this call you specify a Callback for when an event occurs, this your URL will be called:

POST /api.example.com/foo?callbackURL=http://my.server.com/bar

Source: link

    
29.06.2018 / 15:23