目前我正在使用 Drupal 7 和 Moodle2.3 集成,但出现错误“错误:尝试获取用户索引时出现问题!”
== 编辑(作者添加的评论)==
我有机会查看该文件,因此它调用了 auth.php。
$drupal_users = $apiObj->Index('muser');
if (is_null($drupal_users) || empty($drupal_users)) {
die("ERROR: Problems trying to get index of users!\n");
并且,REST-API.php 文件中的函数调用索引...
$callerId = 'RemoteAPI->Index';
if (!$this->VerifyLoggedIn( $callerId )) {
return NULL; // error
}
$url = $this->gateway.$this->endpoint.'/'.$resourceType . $options;