错误:试图获取用户索引的问题!使用drupal服务的moodle认证模块

时间:2012-10-22 12:49:48

标签: php drupal-7 moodle

目前我在Drupal 7& Moodle2.3集成,但我收到错误“错误:试图获取用户索引的问题!”

https://github.com/cannod/moodle-drupalservices/blob/a2c607368d7f2087e575c006425eb2da39bf02cb/README.md

==编辑(作者添加评论)==

我有机会查看该文件,因此它调用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;

1 个答案:

答案 0 :(得分:0)

我也处于类似情况。我正在尝试使用drupal服务,但直到现在我无法成功设置它。我也在这里问一个问题,但我注意到最近开发人员在Github上更新了他的wiki页面。所以,你可以看看它是如何发展的,也许你可以找到解决问题的方法。 希望它有所帮助..