在android中集成twitter时出错

时间:2012-09-14 11:08:29

标签: android

当我运行我的应用程序时,我收到错误

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应用程序时,它没有采取并显示更新。

1 个答案:

答案 0 :(得分:1)

  

是否存在完全重写日食或应用程序的方法

要刷新项目,您可以通过Eclipse清除项目 - >项目 - >清洁 - >从复选框和单选按钮选择项目“清除下面选择的项目”和确定按钮。

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

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

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

只使用一个库twitter4j来处理oAuth并发送推文

  1. http://blog.blundell-apps.com/sending-a-tweet/
  2. http://automateddeveloper.blogspot.in/2011/06/android-twitter-oauth-authentication.html
  3. 使用两个或更多第三方库进行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/
    4. 谢谢,