嗨,我正在尝试BotMan聊天。如何从Bot Man连接到Web服务?谁能帮助我解决这个问题?
我遇到了(承诺)错误:
请求失败,状态码为500。
$client = new GuzzleHttpClient();
$appurl ='http://<aasdfasdffafa>/webservice/rest/server.php?wstoken=FELrRaBd1rLH5G8KJtrLgctDIfbPHTS7&wsfunction=core_user_get_users_by_field&field=username&values[0]=ramkee&moodlewsrestformat=json';
$res = $client->request('GET',$appurl);
$results = json_decode($res->getBody(),true);
foreach($results as $name => $data) {
$d=var_dump($data['username']);
}
谢谢。