0

当我运行我的应用程序时出现错误

09-14 16:33:52.854: W/System.err(380): 401:Authentication credentials (http://dev.twitter.com/pages/auth) were missing or incorrect. Ensure that you have set valid conumer key/secret, access token/secret, and the system clock in in sync.
09-14 16:33:52.864: W/System.err(380): error - Read-only application cannot POST

我已将访问权限更改为读取、写入和直接访问,但上述错误仍然显示为只读应用程序。

我的应用程序没有显示更新是否有办法完全刷新 eclipse 或应用程序..当我运行 android 应用程序时它没有显示更新。

4

1 回答 1

1

有没有办法完全刷新日食或应用程序

要刷新项目,您可以通过 Eclipse -> Project -> Clean -> Select project from check box and radio button to "Clean projects selected below" 和 ok 按钮来清理项目。

日志显示您在请求中缺少某些内容,这非常明显。

您的错误是可以理解的,但是您是否尝试使用 WebView / 浏览器或直接(不推荐)将 Twitter 集成到应用程序中,使用任何 3rd 方库,如果是,那么您使用的是哪个库,尚不清楚。

您可以参考互联网上提供的以下教程,将 twitter 集成到您的应用程序中。

仅使用一个库 twitter4j 来处理 oAuth 并同时制作推文

  1. http://blog.blundell-apps.com/sending-a-tweet/
  2. http://automateddeveloper.blogspot.in/2011/06/android-twitter-oauth-authentication.html

为 oAuth 和推文任务使用两个或更多第三方库

  1. http://blog.tarams.com/?p=212
  2. http://www.android10.org/index.php/articleslibraries/291-twitter-integration-in-your-android-application
  3. http://blog.doityourselfandroid.com/2011/02/13/guide-to-integrating-twitter-android-application/ ,

谢谢,

于 2012-09-14T11:58:05.657 回答