尝试使用multipart发布D2L主题时出现错误302

时间:2013-05-16 00:47:17

标签: http rest multipart desire2learn valence

此问题与one I posted yesterday有关,但我发现了一点,现在我遇到了不同的错误。我从Android中删除了代码,直接从Java中试用。我还尝试了两种不同的方式来获取多重信息。 userContext具有写权限,因为我可以轻松创建模块。

我试过的一种方式:

String json = "{\"IsHidden\": false, \"IsLocked\": false, \"ShortTitle\": "Test\",   \"Type\": 1, \r\n" + "\"DueDate\": null, \"Url\": \"file.txt\", \r\n" + "\"StartDate\": null, \"TopicType\": 1, \"EndDate\": null, \"Title\": \"Test topic \r\n" + "content\"} \r\n"; 

URI uri = userContext.createAuthenticatedUri("/d2l/api/le/1.0/Orgid/content/modules/moduleid/structure/", "POST");

MultipartEntity entity = new MultipartEntity();

StringBody part1 = new StringBody(json, "application/json", null);

entity.addPart("json", part1);

File file = new File("test.txt");

FileBody part2 = new FileBody(file, "test.txt", "text/plain", null);

entity.addPart("file", part2);

DefaultHttpClient httpClient = new DefaultHttpClient();
HttpPost post = new HttpPost(uri);

post.setEntity(entity);

HttpResponse response = httpClient.execute(post);
System.out.println("Statusline: " + response.getStatusLine());

这是我尝试的另一种方式:

String body = "--xxBOUNDARYxx \r\n" +
     "Content-Type: application/json \r\n" +
     "{\"IsHidden\": false, \"IsLocked\": false, \"ShortTitle\": \"Test\", \"Type\": 1, \r\n" +
     "\"DueDate\": null, \"Url\": \"file.txt\", \r\n" +
     "\"StartDate\": null, \"TopicType\": 1, \"EndDate\": null, \"Title\": \"Test topic \r\n" +
     "content\"} \r\n" +
     "--xxBOUNDARYxx \r\n" +
     "Content-Disposition: form-data; name=\"\"; filename=\"file.txt\" \r\n" +
     "Content-Type: text/plain \r\n" +
     " This is a sample text file \r\n" +
     "with some text content. \r\n" +
     "--xxBOUNDARYxx--";

URI uri = userContext.createAuthenticatedUri("/d2l/api/le/1.0/orgid/content/modules/moduleid/structure/", "POST");

DefaultHttpClient httpClient = new DefaultHttpClient();
HttpPost post = new HttpPost(uri);
post.addHeader("Content-Type", "multipart/mixed;boundary=xxBOUNDARYxx");

post.setEntity(new StringEntity(body));

HttpResponse response = httpClient.execute(post);

System.out.println("Statusline: " + response.getStatusLine());

这两种方法都给出了相同的结果:

Statusline: HTTP/1.1 302 Found
Response: <html><head><title>Object moved</title></head><body><h2>Object moved to <a href="/d2l/error/404">here</a>.</h2></body></html>

恕我直言,这两种技术应该按照here描述的方式创建结构,所以我真的被卡住了。我也尝试为Url提供完整的/content/enforced/.../file.txt,结果相同。

1 个答案:

答案 0 :(得分:1)

302重定向实际上是重定向到404错误页面。我怀疑,因为你正在将302重定向到系统“404错误”页面,重定向发生在路由处理层:它可能从堆栈中的更深层次获得404,但是你会只需直接回复您的404请求即可。因此,最可能的原因是D2L应用程序堆栈无法正确地将您的URL(加上一些参数)绑定到路由处理程序 - 也就是说,它无法将您的请求标记为知道哪个位控制器代码把请求交给。

我认为,当你写

userContext.createAuthenticatedUri("/d2l/api/le/1.0/Orgid/content/modules/moduleid/structure/", "POST")

实际在该路线中输入真实的Orgidmoduleid值?因为写入的字符串肯定会返回404 - 没有这样的路由 - 实际上它可能会像您描述的那样重定向到系统404错误页面。

当你写

时也要注意
 ...
 "Content-Type: application/json \r\n" +
 "{\"IsHidden\": false, \"IsLocked\": false, \"ShortTitle\": \"Test\", \"Type\": 1, \r\n" +
 ...

我不确定这会有效。我相信多部分HTTP主体的相关标准表明您需要使用空行标记零件标题与零件数据有效负载的分离,这里您只是将一个运输惰性化返回。您的数据包将如下所示:

Content-Type: application/json
{"IsHidden": false, "IsLocked": false, ...

当它应该时可能看起来像这样:

Content-Type: application/json

{"IsHidden": false, "IsLocked": false, ...

您可以尝试修复它们,看看会发生什么。