Chamilo is a learning management system focused on ease of use and accessibility
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
chamilo-lms/main/webservices
Yannick Warnier 7e4d11f5d4 Webservice: Fix get_audit_items webservice (not getting params properly) - refs BT#21206 2 years ago
..
api Webservice: Fix get_audit_items webservice (not getting params properly) - refs BT#21206 2 years ago
user_import Minor - Format code 3 years ago
README.md
access_url.php Admin: Add config disable_webservices 4 years ago
additional_webservices.php Minor: Webservice: Optimization 2 years ago
chamilo.py
client_soap.php Applied fixes from FlintCI 8 years ago
cm_soap.php Applied fixes from FlintCI 8 years ago
cm_soap_announcements.php Applied fixes from FlintCI 8 years ago
cm_soap_course.php Applied fixes from FlintCI 8 years ago
cm_soap_courses.php Applied fixes from FlintCI 8 years ago
cm_soap_forum.php Applied fixes from FlintCI 8 years ago
cm_soap_inbox.php Applied fixes from FlintCI 8 years ago
cm_soap_user.php Applied fixes from FlintCI 8 years ago
cm_webservice.php Admin: Add config disable_webservices 4 years ago
cm_webservice_announcements.php Applied fixes from FlintCI 8 years ago
cm_webservice_course.php Return a more precise message when user cannot be subscribed see BT#15114 7 years ago
cm_webservice_courses.php Applied fixes from FlintCI 8 years ago
cm_webservice_forum.php Remove unused forumconfig.inc.php 7 years ago
cm_webservice_inbox.php Add int casting, fix "order by" queries 4 years ago
cm_webservice_user.php Add int casting, fix "order by" queries 4 years ago
courses_list.rest.php Admin: Add config disable_webservices 4 years ago
courses_list.soap.php Admin: Add config disable_webservices 4 years ago
example_fill_users_fields.php Minor - Flint fixes 5 years ago
gradebook.php Admin: Add config disable_webservices 4 years ago
http-auth.php Minor - Flint fixes 5 years ago
index.html
lp.php Admin: Add config disable_webservices 4 years ago
registration.soap.php Minor - Format code 3 years ago
soap.php Admin: Add config disable_webservices 4 years ago
soap.test.php Minor - Flint fixes 5 years ago
soap_course.php Applied fixes from FlintCI 8 years ago
soap_report.php Applied fixes from FlintCI 8 years ago
soap_session.php Applied fixes from FlintCI 8 years ago
soap_user.php Applied fixes from FlintCI 8 years ago
test.php
testip.php Fix possible injection using HTTP_X_FORWARDED_FOR 4 years ago
user_info.soap.php Add api_protect_webservices 4 years ago
webservice-auth-ip.conf.dist.php Minor - Flint fixes 5 years ago
webservice.php Admin: Add config disable_webservices 4 years ago
webservice_course.php Return a more precise message when user cannot be subscribed see BT#15114 7 years ago
webservice_report.php Fix calls to get_time_spent_on_platform 2 years ago
webservice_session.php Don't reset session_rel_user.registered_at of users see BT#14271 7 years ago
webservice_user.php Minor - format code 8 years ago

README.md

= Chamilo Webservices =

Chamilo webservices are not the greatest API you can find around, but they kind of work, as long as you don't get fooled by the many files in this folder.

The main maintained script is registration.soap.php The way to call it is relatively well described in the example: client_soap.php

Basically, we have a weird way of authenticating you (until we release APIv2 with OAuth or similar authentication methods). We ask you to include the public IP of the server calling the webservice inside the key, and to combine that key with the $_configuration['security_key'] value in app/config/configuration.php.

You can get your own public IP by doing a wget on the testip.php file in this folder (you can do that automatically through a file_get_contents() or fopen() as well, if you need to). There is a way to alter this mechanism by adding a specific IP to the file webservice-auth-ip.conf.php.

Once you're all setup with the key to connect to Chamilo, just call your webservices like you would normally do through SOAP (that's where the client_soap.php file can really get you through).

Most of the other files are (failed) attempts at redesigning the API. We hope we'll get the chance to provide a better API soon.