是否可以从外部服务器向Moodle发送POST请求,然后已经在Moodle中对数据执行一些操作并保存到DB(本地插件创建的数据库表)。 有可能这样做吗? 谢谢大家的帮助。
答案 0 :(得分:1)
您可以使用网络服务
https://docs.moodle.org/dev/Web_services
以下是一些简要说明
/admin/search.php?query=enablewebservices
/admin/settings.php?section=webserviceprotocols
/admin/settings.php?section=externalservices
/admin/roles/manage.php
webservice/rest:use
/admin/settings.php?section=webservicetokens
然后在php
你可以这样做:
$tokenurl = 'http://[url]/login/token.php?username=xxx&password=xxx&service=yourserviceshortname';
$tokenresponse = file_get_contents($tokenurl->out(false));
$tokenobject = json_decode($tokenresponse);
if (!empty($tokenobject->error)) {
echo $tokenobject->error;
die();
}
$functionurl = 'http://[url]/webservice/rest/server.php';
$functionurl .= '?wstoken=' . $tokenobject->token;
$functionurl .= '&wsfunction=functionname';
$functionurl .= '&moodlewsrestformat=json';
$functionurl .= '¶m1=xxx';
$functionurl .= '¶m2=yyy';
$functionresponse = file_get_contents($functionurl);
$object = json_decode($functionresponse);
var_dump($object);
有关可用功能的完整列表,请参阅/admin/webservice/documentation.php