0

我正在尝试使用 Mechanize 自动填写表格(包括文件上传)。我已经完成了 GUI 界面中的过程并且文件上传正常,所以我知道文件没有损坏,但是当我运行我的机械化脚本时它失败了。该脚本正确执行,并且根据调试它上传了文件,但 Canvas(我正在上传到的服务)说无法读取该文件。我已联系 Canvas 支持,但他们无法提供帮助,因为这是对他们系统的非标准使用。

这是脚本(已匿名):

 09 mech = Mechanize.new
 10 mech.log = Logger.new(STDOUT)
 11 mech.user_agent_alias = 'Mac Mozilla'
 12 mech.get("https://ucdenver.test.instructure.com") do |page|
 13   page.form_with(:action => "/login") do |f|
 14     user_field = f.field_with(:name => "pseudonym_session[unique_id]")
 15     user_field.value = user
 16     pwd_field = f.field_with(:name => "pseudonym_session[password]")
 17     pwd_field.value  = pwd
 18   end.submit
 19 end
 20
 21 mech.get("https://ucdenver.test.instructure.com/accounts/1") do |page|
 22   page.form_with(:action => "/accounts/1/courses") do |f|
 23     course_field = f.field_with(:name => "course[name]")
 24     course_field.value = "38492"
 25   end.submit
 26 end
 27
 28 mech.page.link_with(:href  => %r/settings/,
 29                     :class => "settings").click
 30
 31 mech.page.link_with(:href => %r/import/,
 32                     :text => %r/Import Content/).click
 33
 34 mech.page.link_with(:href => %r/imports\/migrate/,
 35                     :text => %r/Import content from a content package/).click
 36
 37 mech.page.form_with(:action => %r/imports\/migrate/) do |f|
 38   export_system = "migration_settings[migration_type]"
 39   f[export_system] = "blackboard_exporter"
 40   f.file_uploads.first.mime_type = "application/zip"
 41   f.file_uploads.first.file_name = bkb_export
 42 end.submit

画布支持说服务器正在返回:

Could not unzip archive file, exit status 9, message:     
[/mnt/var/web/migration_tool/data/attachment_420130214-13303-sv6ue5-0.jpg] End-of-central-
directory signature not found. Either this file is not a zipfile, or it constitutes one 
disk of a multi-part archive. In the latter case the central directory and zipfile comment 
will be found on the last disk(s) of this archive. unzip: cannot find zipfile directory in 
one of /mnt/var/web/migration_tool/data/attachment_420130214-13303-sv6ue5-0.jpg or 
/mnt/var/web/migration_tool/data/attachment_420130214-13303-sv6ue5-0.jpg.zip, and cannot 
find /mnt/var/web/migration_tool/data/attachment_420130214-13303-sv6ue5-0.jpg.ZIP, period.

不幸的是,这个错误对我来说毫无意义,但是当脚本上传 .zip 文件时它引用了几个 .jpg 似乎很奇怪。任何想法或帮助将不胜感激,如果我遗漏了任何有用的信息,我很乐意提供更多信息。

如果您真的感觉自己是个入门者,您可以在http://canvas.instructure.com上注册一个免费帐户,并亲自查看代码/网络活动。

4

1 回答 1

0

确保您上传的文件类型正确 afaik ruby​​-mechanize 指定

Content-Type: application/octet-stream

对于每种类型的文件,服务器可能正在检查 ContentType 并且与所需的内容类型不匹配,我不记得我使用的 mechanize 的确切版本,但对我来说它是在 mechanize gem 中硬编码的,所以你必须通过mechanize 的源代码并修复它在哪里硬编码 multipart/form-data 文件元素的内容类型。

于 2014-09-11T12:56:09.630 回答