Salesforce Stack Exchange is a question and answer site for Salesforce administrators, implementation experts, developers and anybody in-between. Join them; it only takes a minute:

Sign up
Here's how it works:
  1. Anybody can ask a question
  2. Anybody can answer
  3. The best answers are voted up and rise to the top

I'm open to using SSJS or AMPscript to find the IP address of the client who is accessing a landing page. I tried this AMPscript:

%%=HTTPRequestHeader("X-Forwarded-For")=%%

Which resulted in a blank page.

share|improve this question

Hmmm, that should work but it looks like it's not for some reason. I've tried a few different HTTP header fields and the HTTPRequestHeader() AMPscript function is not returning any of them.

Never mind. As an alternative approach, I'd suggest using an external service to retrieve the client IP address. There are plenty of them out there but ipify.org looks suitable as it's super lightweight, it doesn't have any rate limiting and supports both IPv4 and IPv6 addresses.

Simply use:

<p>Your IP address is: %%=HTTPGet('https://api.ipify.org')=%%</p>

Which displays:

Your IP address is: 136.147.128.12

CloudPages

While this should work on a landing page, it doesn't appear to work on a CloudPage as it appears that the CloudPage CDN is making a reverse proxy request and displays an IP address used by the data center hosting the CloudPage, and not the client IP.

If you are using landing pages (available on earlier accounts) then you should be fine, but CloudPages won't work and I can't come up with a solution for this. I've tried using SSJS, and:

HTTPHeader.GetValue("Host");

Will return the Host value in the HTTP header, but the following HTTP headers return the same empty value as its HTTPRequestHeader() AMPscript counterpart:

HTTPHeader.GetValue("Forwarded");
HTTPHeader.GetValue("X-Forwarded-For");

Solution

As we seem to have exhausted our server-side options for CloudPages, the simplest/only solution would be to:

  1. Make a client-side request to retrieve the IP address from ipify.org and display it on your page
  2. Store the IP address in a cookie
  3. Retrieve the cookie using AMPscript.

For purposes of my example, I'm just printing the IP address on the page, but you can use it to update a Data Extension, etc. I'm assuming that you are not adding any other cookies on your page. If you are, then you will need to update the Replace() function accordingly.

  <script type="text/javascript">
    var url = 'https://api.ipify.org';
    var request = new XMLHttpRequest();
    request.onreadystatechange = function() {
        if (request.readyState === 4) {
            if (request.status === 200) {
                document.body.className = 'ok';
                document.cookie = 'ipAddress=' + request.responseText;
            } else {
                document.body.className = 'error';
            }
        }
    };
    request.open("GET", url , true);
    request.send(null);
    </script> 

   %%[ 
   var @ipAddress
   set @ipAddress = Replace(HTTPRequestHeader('Cookie'),'ipAddress=','')
  ]%%

   <p>IP Address: %%=v(@ipAddress)=%%</p>
share|improve this answer
    
@Daniel, I'm guessing you probably want to use the client IP address in AMPscript, so I've updated my answer to reflect this. – Eliot Harper 1 hour ago

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.