3

我尝试了许多不同的方法并在整个互联网上搜索以找到将 JTwitter 与 OAuth 结合使用的教程。这是我完成的以下步骤

下载 Jtwitter 和 Signpost 在 Java Builder 中将它们添加为 Jars

创建了一个运行的简单按钮

public class ShareGenerator extends Activity {

    private static final String JTWITTER_OAUTH_KEY = "this_is_populated";
    private static final String JTWITTER_OAUTH_SECRET = "this_is_populated";

    Button menupopButton;

     @Override
        public void onCreate(Bundle savedInstanceState) {
      super.onCreate(savedInstanceState);
  setContentView(R.layout.share);
  this.setContentView(R.layout.share);
  this.txShare = (TextView)this.findViewById(R.id.lblshare);
  this.menupopButton = (Button)this.findViewById(R.id.menupop);


  menupopButton.setOnClickListener(new View.OnClickListener()
  { 
      public void onClick(View v) 

      {
          TwitterSend();

      } 
 }); 

     }

我有我的课

public void TwitterSend () {

                 OAuthSignpostClient client = new OAuthSignpostClient(JTWITTER_OAUTH_KEY, JTWITTER_OAUTH_SECRET, "oob");
                    Twitter jtwit = new Twitter("bob", client);
                    // open the authorisation page in the user's browser
                    client.authorizeDesktop();
                    // get the pin
                    String v = client.askUser("Please enter the verification PIN from Twitter");
                    client.setAuthorizationCode(v);
                    // Optional: store the authorisation token details
                    Object accessToken = client.getAccessToken();
                    // use the API!
                    jtwit.setStatus("Messing about in Java");

             }

但是,我什至无法弹出 OAuth 屏幕。当它到达那里时它崩溃了。谁能帮我至少看到 OAuth 屏幕?我确实正确设置了导入。

4

3 回答 3

3

问题出在这一行,它使用了 java.awt.Desktop:

// open the authorisation page in the user's browser
client.authorizeDesktop();

这将适用于台式电脑,但不适用于 Android。

相反,从那里获取 urlclient.authorizeUrl();并将用户发送到那里。例如,像这样的东西:

URI url = client.authorizeUrl();
Intent myIntent = new Intent(Intent.VIEW_ACTION);
myIntent.setData(url);
startActivity(myIntent);

但我不是 Android 编码员!您几乎可以肯定通过使用回调而不是oob. 希望其他人可以提供代码...

于 2010-07-09T07:31:50.973 回答
1

Daniel 提供了一个很好的起点。这就是我在我的 Android 应用程序中实现它的方式:

    OAuthSignpostClient authClient = new OAuthSignpostClient('apiKey','apiSecret','callbackUrl');

                java.net.URI jUrl = authClient.authorizeUrl();
                Uri.Builder uriBuilder = new Uri.Builder();
                uriBuilder.encodedPath(jUrl.toString());

                Intent myIntent = new Intent(Intent.ACTION_VIEW, Uri.parse(jUrl.toString()));
                startActivity(myIntent);

当然,'apiKey'为了简洁起见,我使用了等等。您需要在OAuthSignpostClient构造函数中使用自己的密钥、秘密和回调 url。

注意:您需要将 JTwitter 提供的 Java.net.URI 转换为 Android.net.Uri 才能使用它来启动新的 Intent。

在此之后,您将需要使用一个意图过滤器来捕获回调 url,并使用您将从 Twitter API 获得的用户令牌和秘密做一些事情。

于 2011-10-19T12:08:48.787 回答
-2

看到这篇文章[如果你在乎,请检查转速历史]

于 2010-11-17T07:35:08.687 回答