Is there a way to display the IP of the proxy you are currently using in the log?
-
How can I leave an IP address in the log?
-
I'm trying to figure this out as well but have not found a solution.
-
The proxy is usually used from resources, so if your resource name
that holds a list of proxies is "{{proxy}}" than simply put it in the log
and it will show currently used proxy IP address in the log.No one answers because it is a trivial question.
-
Need to check the IP via web response.
You need to get back the information from third party services, they are limitless, some examples:
https://www.maxmind.com/en/locate-my-ip-address
https://ipapi.co/json/
https://ifconfig.me/After info received, simple parse the result.
Good luck!
-
@jtercs Thank you. I solved it with the site you pointed out.
-
For those who needs this later, you can set up http proxy and send a simple get request to https://api.ipify.org , it will give you the ip adress in plain text, no need to parse the json.
One of many simple and easy ways to do it.