location - If you need to specify an IP address, you can fill in the area code here, click here to see all area codes;
Taking python as an example, if you want to set your IP locale to USA and sticky session length to 10min, you can refer to the following code:
import requests
# Parameters are set to the corresponding sub-account, password, location information
proxyip = "http://username:password-location=US@ahk.luckdata.io:58990"
# The target API address, here https://api.ip.cc, prints your IP address information after you run it
url = "https://api.ip.cc"
proxies = {
'https': proxyip,
'https': proxyip,
}
# Sending GET Requests Using Proxies
response = requests.get(url=url, proxies=proxies)
# Print the response
print(response.text)