O
O
olezhenka2019-07-10 00:41:14
API
olezhenka, 2019-07-10 00:41:14

How to send callbacks from your server and not burn your IP address under the cloud flyer?

I want to file a callback api in my service for developers. Is it possible to somehow send these callbacks by proxying through the cloud flyer?) After all, when I send them from my server, I burn my IP address.

Answer the question

In order to leave comments, you need to log in

1 answer(s)
B
bkosun, 2019-07-10
@olezhenka

Use a third party proxy.
If you are using cURL to send requests, set the required parameters before sending the request

curl_setopt($ch, CURLOPT_PROXY, 'IP_ADDRESS:PORT');
curl_setopt($ch, CURLOPT_PROXYUSERPWD, 'LOGIN:PASSWORD');

https://www.php.net/manual/en/function.curl-setopt.php

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question