Assume i want to connect to twitter from my application - using twitter API. i.e Application is providing Twitter integration facility.
So when “login to Twitter” is clicked : it will use twitter API and pop-up the Login screen of Twitter itself . For this following is used :
http://platform.twitter.com/anywhere.js?id=appkey
Question :
currently this login screen (and followed by it the authorization screens) of Twitter will always show up in English .
Is it possible to show them in the language sent through the request itself. i.e : is something like below possible ?
http://platform.twitter.com/anywhere.js?id=appkey&lang=ja
(ex: say i want the login and auth screens to be shown in Japanese , because user is currently using Japanese language in the application which is providing the Twitter integrating facility)
Currently the above “&lang” is not seeming to work/honored. Because that above url with &lang=ja : still ends up showing in english always.
So please let me know if there is a way to show the login and auth screens of Twitter in a lang prefered by user- that can be sent as part of request url itself.
thanks a lot in advance for the help.