Android 中 Dropbox 中的内部服务器错误

发布于 2024-10-17 08:14:27 字数 743 浏览 2 评论 0原文

在 Dropbox 论坛上尝试过,但没有运气:

我从 Android 访问 Dropbox API,

我向“https://api.dropbox.com/0/fileops/create_folder”发出 HttpPost 请求,并作为参数传递

List <NameValuePair> parameters = new ArrayList <NameValuePair>();
parameters.add(new BasicNameValuePair("path", "xxx"));
parameters.add(new BasicNameValuePair("root", "xxx"));
parameters.add(new BasicNameValuePair("oauth_consumer_key", "xxx"));
parameters.add(new BasicNameValuePair("oauth_token", "xxx"));
parameters.add(new BasicNameValuePair("oauth_secret", "xxx"));
parameters.add(new BasicNameValuePair("oauth_timestamp", "xxx"));
parameters.add(new BasicNameValuePair("oauth_nonce", "xxx"));

:事情是我收到内部服务器错误,尽管使用相同的代码(当然不同的参数)我设法进行身份验证。知道为什么吗?

Tried on Dropbox forum but no luck:

I'm reaching Dropbox API from Android,

i do a HttpPost request to "https://api.dropbox.com/0/fileops/create_folder" and i pass as parameters:

List <NameValuePair> parameters = new ArrayList <NameValuePair>();
parameters.add(new BasicNameValuePair("path", "xxx"));
parameters.add(new BasicNameValuePair("root", "xxx"));
parameters.add(new BasicNameValuePair("oauth_consumer_key", "xxx"));
parameters.add(new BasicNameValuePair("oauth_token", "xxx"));
parameters.add(new BasicNameValuePair("oauth_secret", "xxx"));
parameters.add(new BasicNameValuePair("oauth_timestamp", "xxx"));
parameters.add(new BasicNameValuePair("oauth_nonce", "xxx"));

And well, the thing is i get an Internal Server Error although with the same code (different parameters, of course) i manage to authenticate. Any idea why?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

为你鎻心 2024-10-24 08:14:27

要创建文件夹,请将此代码

 private DropboxAPI api = new DropboxAPI();

Entry entry = api.createFolder("dropbox", "NameOfFolder");  

dropbox-android-sdk 一起 使用-0.1

希望对您有帮助。

To create folder please use this code

 private DropboxAPI api = new DropboxAPI();

Entry entry = api.createFolder("dropbox", "NameOfFolder");  

with dropbox-android-sdk-0.1

Hope it helps you.

旧时模样 2024-10-24 08:14:27

我可能不太明白你的问题,但为什么你需要不同的参数名称?通常,在此类请求中,您需要确切的参数名称。

希望对您有帮助。

I may have not understood quite well your problem but why do you need different parameter names? Often in this kind of requests you need the exact parameter name.

Hope it helps you.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文