2012-09-14 176 views
0

整合Twitter的當我運行我的應用我收到錯誤錯誤在安卓

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 

我已經改變了訪問讀,寫和直接存取 但仍出現上述錯誤說只讀應用。

我的應用程序沒有顯示更新是否存在ant方式來完全重新引導eclipse或應用程序..當我運行android應用程序時,它沒有采取並顯示更新。

+0

這可能會幫助您解決問題too..setting回調url..http://chat.stackoverflow.com/transcript/message/5324503#5324503 – MKJParekh

+0

@ user1508671您是否正在使用哪個庫在您的android應用程序的twitter上發佈推文? –

回答

1

是那裏refesh日食或應用程序完全

要刷新項目螞蟻的方式,你可以通過Eclipse的清潔項目 - >項目 - >清潔 - 從複選框,單選按鈕>選擇項目「下面選擇的清潔項目」並確定按鈕。

日誌顯示你在請求中丟失了某些東西,這很明顯。

你的錯誤是可以理解的,但是你是否試圖使用WebView /瀏覽器或者馬上使用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

使用兩個或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/

感謝,