根据ip地址判断用户的来自哪个国家,切换 buy now 的跳转链接到不同的店铺购买页面
运营通过facebook和google投放了广告,想要广告的落地页可以担任起重要的作用,通过不同的用户访问的ip地址把 去购买的链接 指向不同的购买地址。
这个不只是shopify可以使用,wordpress,其他通过JavaScript的请求都可以
用了通过ip的判断接口,可以返回很多字段,示例是意大利的ip
{
"ip": "2.47.255.255",
"hostname": net-2-47-255-255.cust.vodafonedsl.it
"continent_code": "EU",
"continent_name": "Europe",
"country_code2": "IT",
"country_code3": "ITA",
"country_name": "Italy",
"country_capital": "Rome",
"state_prov": "Piedmont",
"district": "Turin",
"city": "Ivrea",
"zipcode": "10015",
"latitude": 45.45803,
"longitude": 7.87121,
"is_eu": "true",
"calling_code": "+39",
"country_tld": ".it",
"languages": "it-IT,de-IT,fr-IT,sc,ca,co,sl",
"country_flag": "https://ipgeolocation.io/static/flags/it_64.png",
"isp": "Vodafone Italia S.p.A.",
"connection_type": "",
"organization": "Vodafone Italia S.p.A.",
"asn": "AS30722",
"geoname_id": 10401654,
"currency": {
"name": "Euro",
"code": "EUR",
"symbol": "€",
},
"time_zone": {
"name":"Europe/Rome",
"offset": 1,
"current_time": "2021-11-15 09:57:08.235+0100",
"current_time_unix": "1.636966628235E9",
"is_dst": "false",
"dst_savings": 1,
}
}
function h_ipgeolocation(){
const myPromise = new Promise((resolve, reject) => {
$.get('https://api.ipgeolocation.io/ipgeo?apiKey=key').done(function(data) {
window.h_ipgeolocation=data
resolve(data);
}).fail(function(err) {
reject( err );
});
});
return myPromise
}
可以在这里获取不同国家的ip查看返回值
意大利IP大全 意大利IP地址列表 意大利IP段下载 2021-11-07http://ip.bczs.net/country/IT可以用google插件 uVpn进行测试
Geo Targetly - Geo Targeting, Geo Redirection, Geo Content, IP GeolocationGeo target your website visitors using our geo targeting tools. Redirect visitors or show content by country, state & city using their IP geolocation.https://geotargetly.com/选择了使用这个接口
Free IP Geolocation API and Accurate IP Geolocation Databasehttps://ipgeolocation.io/