Dropbox文件下载/上传

时间:2012-12-09 05:20:58

标签: java android dropbox

我在将Dropbox连接到我的应用时遇到了一些问题。我打印了异常堆栈,它显示错误是由dropboxunlinkedexception引起的。我不确定我的代码中有什么问题。如果有人可以看看并帮我找出dropbox的API,那就太好了。

完整代码: http://pastebin.com/2ZAZgwEC

Dropbox相关代码: http://pastebin.com/T2C1AiLz

1 个答案:

答案 0 :(得分:0)

https://www.dropbox.com/developers/start/setup#android

我认为文档非常清楚如何在您的应用程序中集成dropbox。

您的清单文件是否包含

<activity
  android:name="com.dropbox.client2.android.AuthActivity"
  android:launchMode="singleTask"
  android:configChanges="orientation|keyboard">
  <intent-filter>
    <!-- Change this to be db- followed by your app key -->
    <data android:scheme="db-INSERT-APP-KEY-HERE" />
    <action android:name="android.intent.action.VIEW" />
    <category android:name="android.intent.category.BROWSABLE"/>
    <category android:name="android.intent.category.DEFAULT" />
  </intent-filter>
</activity>

还有互联网许可?

<uses-permission android:name="android.permission.INTERNET"></uses-permission>
当您尝试下载或上载文件而未成功登录时,会发生dropboxunlinkedexception。检查身份验证部分https://www.dropbox.com/developers/start/authentication#android,这应该排序您的问题