### Build and Install Telize (Go) Source: https://github.com/fcambus/telize/blob/master/README.md Builds and installs the Telize application using the Go toolchain. This command fetches and compiles all necessary dependencies automatically. ```Go go build go install telize ``` -------------------------------- ### Get IP Address (JSON) Source: https://github.com/fcambus/telize/blob/master/README.md Retrieves the visitor's IP address in JSON format. This is a GET request to the /jsonip endpoint. ```HTTP http://127.0.0.1:8080/jsonip ``` -------------------------------- ### Enable Telize as a Systemd Service (Shell) Source: https://github.com/fcambus/telize/blob/master/README.md Enables the Telize service to start automatically at system boot time using systemd. This involves copying the service file and enabling it. ```Shell systemctl enable telize ``` -------------------------------- ### Get IP Location (JSON) Source: https://github.com/fcambus/telize/blob/master/README.md Retrieves the geolocation information for the visitor's IP address in JSON format. This is a GET request to the /location endpoint. ```HTTP http://127.0.0.1:8080/location ``` -------------------------------- ### Get IP Address (Plain Text) Source: https://github.com/fcambus/telize/blob/master/README.md Retrieves the visitor's IP address in plain text format. This is a simple GET request to the /ip endpoint. ```HTTP http://127.0.0.1:8080/ip ``` -------------------------------- ### Get IP Address (JSONP) Source: https://github.com/fcambus/telize/blob/master/README.md Retrieves the visitor's IP address in JSONP format, allowing for cross-domain requests. A callback function name is specified via the 'callback' query parameter. ```HTTP http://127.0.0.1:8080/jsonip?callback=getip ``` -------------------------------- ### Get IP Location (JSONP) Source: https://github.com/fcambus/telize/blob/master/README.md Retrieves the geolocation information for the visitor's IP address in JSONP format. A callback function name is specified via the 'callback' query parameter. ```HTTP http://127.0.0.1:8080/location?callback=getlocation ``` -------------------------------- ### Get IP Location by Specific IP (JSON) Source: https://github.com/fcambus/telize/blob/master/README.md Retrieves the geolocation information for a specific IP address in JSON format. The IP address is provided as a path parameter. ```HTTP http://127.0.0.1:8080/location/46.19.37.108 ``` -------------------------------- ### Get IP Location by Specific IP (JSONP) Source: https://github.com/fcambus/telize/blob/master/README.md Retrieves the geolocation information for a specific IP address in JSONP format. The IP address is provided as a path parameter, and a callback function is specified. ```HTTP http://127.0.0.1:8080/location/46.19.37.108?callback=getlocation ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.