getData()
尝试使用方法下载 ParseFile 时出现以下异常。
com.parse.ParseException: Download from S3 failed. Moved Permanently
at com.parse.ParseAWSRequest.onResponseAsync(ParseAWSRequest.java:43)
at com.parse.ParseRequest$3.then(ParseRequest.java:137)
at com.parse.ParseRequest$3.then(ParseRequest.java:133)
at bolts.Task$15.run(Task.java:917)
at bolts.BoltsExecutors$ImmediateExecutor.execute(BoltsExecutors.java:105)
at bolts.Task.completeAfterTask(Task.java:908)
at bolts.Task.continueWithTask(Task.java:715)
at bolts.Task.continueWithTask(Task.java:726)
at bolts.Task$13.then(Task.java:818)
at bolts.Task$13.then(Task.java:806)
at bolts.Task$15.run(Task.java:917)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1113)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:588)
at java.lang.Thread.run(Thread.java:818)
ParseFile 是一个 jpg 文件,它被上传然后放入一个名为ImageObject
. 它ImageObject
还有其他几个参数,如标题、宽度、高度,可以正确上传和下载。通过仪表板确认,图像本身正确上传。只有在下载过程中我才得到上述异常。
这是我的上传代码
file.saveInBackground(new SaveCallback() {
@Override
public void done(ParseException e) {
if (e == null) {
Log.d(tag, "Successfully uploaded image file");
ParseObject image = new ParseObject("imageObject"); //Create new Image-ParseObject and set values
image.put("author", ParseUser.getCurrentUser());
image.put("imageFile", file);
image.put("caption", caption);
image.saveInBackground(new SaveCallback() {
@Override
public void done(ParseException e) {
if(e==null){
Log.d(tag, "Successfully saved image file to object");
}else{
Log.d(tag, "Failed to save image file to object", e);
}
}
});
} else {
Log.d(tag, "Failed to save image", e);
}
}
我的下载代码几乎是ParseFile.getFile()
在我ImageObjects
通过 ParseQuery 检索到所有内容之后。
我遵循 ParseAWSRequest.java 的第 43 行,我发现了这个,
if (statusCode >= 200 && statusCode < 300 || statusCode == 304) {
// OK
} else {
String action = method == ParseHttpRequest.Method.GET ? "Download from" : "Upload to";
return Task.forError(new ParseException(ParseException.CONNECTION_FAILED, String.format(
"%s S3 failed. %s", action, response.getReasonPhrase())));
}
这和“永久删除”指向我的 nginx 反向代理,它在重定向到 https 时返回 301 代码。不幸的是,我不知道从哪里开始。
额外的信息,我已经在防火墙中阻止了端口 80(http) 进行测试,似乎下载 parse-android-sdk 正在尝试从 http 下载。这很奇怪,因为我已经用“https”指定了我的解析服务器链接,而且上传工作正常。我可以在我的服务器上使用仪表板查看上传的图像。
使用,
- 解析服务器 2.2.13
- 解析 Android SDK 1.13.1
- 解析仪表板 1.0.14