I would like to create a multilanguage landing page ,
users will get the content according to their chosen language.
I would like the landing page to have a design and a contact form
can i do this using static html app ? or is there any other way to doing that ?
Thanks
After the user authorizes your app you should receive a signed request from facebook. This request is explained here: Signed Request.
As part of the data in that signed request, you get the user object which contains the locale string.
You can use that locale code in order to get the users’ preferred language and act based on that.
The fact that you want to display different things based on language choice means that the content is not static, it’s dynamic.
You can just use javascript to auth the user with facebook, get the locale from the signed request, and then load different static html files according to the chosen language.
That way the content itself is static, but the choice is dynamic.
Hope this is what you meant.