黑莓:Twitter登录网页内容不以英文显示

时间:2011-11-10 07:37:01

标签: http blackberry

在我的黑莓Twitter集成在LogingPage中某些上下文(文本等)不显示英文显示垃圾可能是它的显示像其他语言不支持Devise所以垃圾文本显示根据我不确定。所以,如果有任何想法,请回答我

我还修改了帖子

的请求代码
conn.setRequestMethod(HttpConnection.POST);

//conn.setRequestProperty("Accept-Language", "en");
conn.setRequestProperty("Content-Language", "en-US");

conn.setRequestProperty(
    "Content-Type",
    "application/x-www-form-urlencoded");
conn.setRequestProperty(
    "Content-Length", String.valueOf(postData.length));

OutputStream out = conn.openOutputStream();
out.write(postData);
out.close(); 

1 个答案:

答案 0 :(得分:0)

尝试使用BIS。它适用于BIS。否则,您可以将HTTP GET和POST方法调用到以下网址。

对于请求令牌调用https://api.twitter.com/oauth/request_token(带有密钥,密钥和签名的HTTP GET)。然后您将获得请求令牌

对于授权,请在浏览器https://twitter.com/oauth/authorize?oauth_token=your请求令牌

中调用此链接

用于访问令牌调用https://twitter.com/oauth/access_token(带有密钥,密钥,签名,令牌的HTTP POST)。然后你将获得访问令牌和秘密。