2017-01-03 8 views
1

私はMoodle 3.1以降を使用しています。私はwebserviceを使用してコースの内容を取得しようとしています。私はアクティビティ 'レッスン'を含むコースを作成しました。ここで、webservice 'core_course_get_contents'を使ってコースの内容を取得しようとすると、次のような応答が得られます。webserviceを使用してコースコンテンツを取得する

[{"id":36,"name":" 0","visible":1,"summary":"","summaryformat":1,"modules":[{"id":18,"url":"http:\/\/localhost\/moodle\/mod\/lesson\/view.php?id=18","name":"Lesson1","instance":1,"visible":1,"modicon":"http:\/\/localhost\/moodle\/theme\/image.php\/mentornetz\/lesson\/1483338014\/icon","modname":"lesson","modplural":"Lessons","indent":0}]}] 

しかし、レスポンスにはレッスンの詳細が含まれていません。

Moodle APIのドキュメントには、私の回答に欠けている以下の詳細が含まれています。以下は

contents list of ( 
object { 
type string //a file or a folder or external link 
filename string //filename 
filepath string //filepath 
filesize int //filesize 
fileurl string Optional //downloadable file url 
content string Optional //Raw content, will be used when type is content 
timecreated int //Time created 
timemodified int //Time modified 
sortorder int //Content sort order 
userid int //User who added this content to moodle 
author string //Content owner 
license string //Content license 
} 

私はもちろんの内容を取得するにはどうすればよいのwebservice core_course_get_course_module

object { 
cm object { 
id int //The course module id 
course int //The course id 
module int //The module type id 
name string //The activity name 
modname string //The module component name (forum, assign, etc..) 
instance int //The activity instance id 
section int //The module section id 
sectionnum int //The module section number 
groupmode int //Group mode 
groupingid int //Grouping id 
completion int //If completion is enabled 
idnumber string Optional //Module id number 
added int Optional //Time added 
score int Optional //Score 
indent int Optional //Indentation 
visible int Optional //If visible 
visibleold int Optional //Visible old 
completiongradeitemnumber int Optional //Completion grade item 
completionview int Optional //Completion view setting 
completionexpected int Optional //Completion time expected 
showdescription int Optional //If the description is showed 
availability string Optional //Availability settings 
} 
warnings Optional //list of warnings 
list of ( 
    //warning 
object { 
item string Optional //item 
itemid int Optional //item id 
warningcode string //the warning code can be used by the client app to implement specific behaviour 
message string //untranslated english message to explain the warning 
} 
)} 

の応答ですか?助けてください。

+0

APIドキュメントでは、どうしたらいいですか? – arkascha

+0

@arkascha十分な資料がありません。 – user1690835

+2

ドキュメントには、 'core_course_get_contents'がURLを含むコースモジュールを配信すると書かれています。そしておそらく 'core_course_get_course_module'を後で呼び出して、そのコースの特定のモジュールに関する詳細を取得する必要があります。私はそれがhttps://docs.moodle.org/dev/Web_service_API_functionsの文書からかなり明らかだと思います – arkascha

答えて

0

すべてのモジュールでコンテンツのエクスポートがサポートされているわけではありません。簡単なgrepによると、ほとんどリソースに限定されていることがわかりました。:book、page、file、url、...

あなたのコースにURLリソースを追加すると、webserviceはコンテンツを返す必要があります。

関連する問題