Dropboxフォーラムで試しましたが、運がありませんでした。
AndroidからDropboxAPIにアクセスしています。
「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"));
そして、同じコード(もちろん異なるパラメーター)で認証できたとしても、内部サーバーエラーが発生します。なぜですか?