Android 中 Dropbox 中的内部服务器错误
在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
要创建文件夹,请将此代码
与 dropbox-android-sdk 一起 使用-0.1
希望对您有帮助。
To create folder please use this code
with dropbox-android-sdk-0.1
Hope it helps you.
我可能不太明白你的问题,但为什么你需要不同的参数名称?通常,在此类请求中,您需要确切的参数名称。
希望对您有帮助。
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.