3

我已经通过 SOAP 协议使用 Java 客户端使用 joomdle WS“joomdle_create_course”创建了 Moodle 课程。之后,我在我的个人区域上传了一个带有 WS "core_files_upload" 的 SCORM 包文件。现在我想通过 WS 将此 Scorm 文件与我的课程链接!我能怎么做?

你知道“core_files_upload”的参数是什么(例如filearea,component,itemid,filepath ...)我必须使用来将文件配置在存储在Moodle中的确切路径中吗?

太感谢了!

4

1 回答 1

0

您可以在自己的 moodle 实例中找到 API 文档

/moodle/admin/webservice/documentation.php

该函数core_files_upload具有以下参数:

Array 
(
    [contextid] => int        
    [component] => string        
    [filearea] => string        
    [itemid] => int        
    [filepath] => string        
    [filename] => string        
    [url] => string        
)
于 2013-12-19T17:27:08.567 回答