RyanStanford1
6 years agoQrew Captain
formula field to do an ajax request
I'm attempting to get the IP address that a user accessed an app and made changes from...
Is a formula Field able to do this call?
something similar to:
var IPpromise = $.ajax({type: "GET",url: "https://api.ipify.org/?format=jsonp";,dataType: "jsonp"});
$.when(IPpromise).then(function(json) {
var ip = json.ip;
log.push("IP of User: " + ip);
});
Is a formula Field able to do this call?
something similar to:
var IPpromise = $.ajax({type: "GET",url: "https://api.ipify.org/?format=jsonp";,dataType: "jsonp"});
$.when(IPpromise).then(function(json) {
var ip = json.ip;
log.push("IP of User: " + ip);
});