How to target on browser Language using Expression Targets? | Community
Skip to main content
Nicolas_Swisscom
New Participant
October 16, 2015
Solved

How to target on browser Language using Expression Targets?

  • October 16, 2015
  • 4 replies
  • 3072 views

Hi there

I want to target base on browser language (ex. German) but are not sure how to create a correct Expression-Target for this?

Not sure if user.header or user.browser should be used and how the correct syntax should look like? Then there is also user.header('accept-language') and user.header('accept') which both seem to fit somehow?

I created these 3 Expression Targets but am not sure about which one is correct?

1.return user.header('accept-language')=="de";

2.return (user.header.indexOf('de') != -1);

3. return (user.browser.indexOf('de') != -1);

 

thanks for your help.

Nicolas

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by WhoaShekhar

Hi Nicolas,

Thank you for reaching out to Adobe Community.

I would request you to kindly try and use the below code and see if it helps:

return user.header('accept-language').indexOf('de') > -1

Thanks!

4 replies

gylesf73140248
New Participant
October 2, 2017

Hello,

I am trying to do something similar, but with language and locale.

What exactly does the user.header('accept-language') get?  usually the accept language has locale and factor weighting included.  Accept-Language - HTTP | MDN

for example if i wanted to create a profile script differentiating england from united states for english, i would need to parse the language and locale.   would the user.header("accept-language") give me "en-gb" or "en-us"?

Does using console.log work for debugging these scripts?  It is difficult to use the built in target parameters without know exactly what it provides.

any help would be much appreciated!

Gyles Fohl

ParitMittal
New Participant
June 27, 2017

Hi Mike,

Thanks for reaching out to Adobe Target community .

Can you please let us know the browser language on which you want to base your targeting activity?

Regards

Parit

TheQuinn
New Participant
June 23, 2017

Do you know when this list of languages will be increased as it is incredibly restricted.

WhoaShekhar
WhoaShekharAccepted solution
New Participant
October 16, 2015

Hi Nicolas,

Thank you for reaching out to Adobe Community.

I would request you to kindly try and use the below code and see if it helps:

return user.header('accept-language').indexOf('de') > -1

Thanks!