1

我目前正在开发我的第一个 android 应用程序,我在连接到 twitter 以从我的 Android 3.2 模拟器发布状态时遇到问题。模拟器似乎能够连接到互联网,因为我可以使用内置浏览器连接到网络并设置 DNS 服务器。

![应用][1]

当我单击更新按钮时,整个应用程序失败并出现以下错误:

对不起!应用程序 Burnett Street Hustle v1(进程 com.burnettstreethustle)已意外停止,请重试。

由于代码编译并运行,直到我单击“更新”按钮,我不确定出了什么问题,因为错误消息也不清楚。

这是我的代码:

public class TwitterTab extends Activity implements OnClickListener {

        static final String TAG = "TwitterTab";


        Button buttonUpdate;
        EditText textStatus;


        public void onClick(View src) {

            String JTWITTER_OAUTH_KEY =  "***************************";
            String JTWITTER_OAUTH_SECRET = "*****************************"; // i do have these codes as the app is registered, they have just been blanked out and are not the cause of the problem.

            OAuthSignpostClient oauthClient = new OAuthSignpostClient(JTWITTER_OAUTH_KEY,JTWITTER_OAUTH_SECRET, "http://127.0.0.1:1066/Twitter/Callback.aspx");



            oauthClient.authorizeUrl();
            String v = OAuthSignpostClient.askUser("Please enter the verification PIN from Twitter");
            oauthClient.setAuthorizationCode(v);

            Object accessToken = oauthClient.getAccessToken();
            Twitter jtwit = new Twitter("burnettstrhustl", oauthClient);

          String status = textStatus.getText().toString();

          Log.d(TAG, "Clicked on "+ status);

          // Toast
          Toast.makeText(this, textStatus.getText(), Toast.LENGTH_LONG).show();

          // set twitter status 
          jtwit.setStatus(status);

          //reset status string
          textStatus.setText("");
        }

    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.twitter);
        buttonUpdate = (Button) findViewById(R.id.buttonUpdate);
        textStatus = (EditText) findViewById(R.id.textStatus);

        // Add listener
        buttonUpdate.setOnClickListener(this);

    }

我也不确定如何正确使用回调 url,必须进入哪个 url 才能进行授权?

谢谢。

更新堆栈跟踪:

09-16 17:05:41.537:错误/AndroidRuntime(409):winterwell.jtwitter.TwitterException:oauth.signpost.exception.OAuthCommunicationException:与服务提供商的通信失败:null

4

2 回答 2

1

您的应用是否在清单文件中设置了互联网权限?

于 2012-04-06T09:17:30.777 回答
1

您在那里使用仅限桌面的示例代码。

最佳实践是创建将用户发送到授权 URL 的意图。然后从 Twitter 捕获带有授权信息的后续 Web 请求。

Marakana 还有一个 Android / JTwitter 示例: http ://marakana.com/forums/android/examples/312.html

于 2011-09-30T07:34:15.750 回答