mirror of
https://github.com/moodle/moodle.git
synced 2025-01-19 14:27:22 +01:00
49 lines
1.1 KiB
PHP
49 lines
1.1 KiB
PHP
<?php
|
|
/**
|
|
* Created on 10/17/2008
|
|
*
|
|
* Rest Test Client
|
|
*
|
|
* @author David Castro Garcia
|
|
* @author Ferran Recio Calderó
|
|
* @author Jerome Mouneyrac
|
|
*/
|
|
|
|
require_once ('config_rest.php');
|
|
start_interface("Create A User");
|
|
|
|
$ch = curl_init();
|
|
|
|
$data['username'] = "mockuser5";
|
|
$data['firstname'] = "mockuser5";
|
|
$data['lastname'] = "mockuser5";
|
|
$data['email'] = "mockuser5@lastname.com";
|
|
|
|
var_dump($data);
|
|
|
|
//we are asking for a token
|
|
$connectiondata['username'] = 'admin';
|
|
$connectiondata['password'] = 'admin';
|
|
$ch = curl_init();
|
|
curl_setopt($ch, CURLOPT_URL, $CFG->serverurl.'/user/tmp_get_token');
|
|
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
|
|
curl_setopt($ch, CURLOPT_POST, 1);
|
|
curl_setopt($ch, CURLOPT_POSTFIELDS, format_postdata($connectiondata));
|
|
$token = curl_exec($ch);
|
|
$data['token'] = $token;
|
|
|
|
curl_setopt($ch, CURLOPT_URL, $CFG->serverurl.'/user/tmp_create_user');
|
|
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
|
|
curl_setopt($ch, CURLOPT_POST, 1);
|
|
curl_setopt($ch, CURLOPT_POSTFIELDS, format_postdata($data));
|
|
|
|
$out = curl_exec($ch);
|
|
|
|
$res = basicxml_xml_to_object($out);
|
|
|
|
show_object($res->userid);
|
|
|
|
show_xml ($out);
|
|
|
|
end_interface();
|
|
?>
|