Note: You are currently viewing documentation for Moodle 3.2. Up-to-date documentation for the latest stable version of Moodle is probably available here: Mobile web services.

Mobile web services: Difference between revisions

From MoodleDocs
No edit summary
 
(8 intermediate revisions by 5 users not shown)
Line 1: Line 1:
{{Web services}}
{{Web services}}
Moodle comes with a built-in web service designed for mobile applications. It is required to run the official [[dev:Moodle Mobile]]. Enable it only if you want people to use the official app or if a third party app explicitly requires it.
Moodle comes with a built-in web service designed for mobile applications. It is required to run the official [[Mobile app]]. Enable it only if you want people to use the official app or if a third party app explicitly requires it.


== Enabling mobile web services ==
== Enabling mobile web services ==
Line 6: Line 6:
A site administrator first must enable mobile web services:
A site administrator first must enable mobile web services:


*In ''Settings > Site administration > Plugins > Web services > Mobile''  
*In ''Administration > Site administration > Mobile app > Mobile settings''  
*Check "Enable mobile web services" and then
*Check "Enable web services for mobile devices" and then
*Click Save.
*Click Save.


Line 16: Line 16:
== What happens when the service is enabled ==
== What happens when the service is enabled ==
Enabling the mobile web services will automatically:
Enabling the mobile web services will automatically:
* enable the web services system (''Settings > Site administration > Advanced features'')
* enable the web services system (''Administration > Site administration > Advanced features'')
* enable the built-in external service called 'Mobile web services' - you should see this new mobile service listed as enabled
* enable the built-in external service called 'Mobile web services' - you should see this new mobile service listed as enabled
* enable the xml-rpc protocol (for backward compatibility with unmaintained My Moodle app)
* enable the xml-rpc protocol (for backward compatibility with unmaintained My Moodle app)
Line 37: Line 37:


[[Category:Mobile]]
[[Category:Mobile]]
[[de:Mobile Webservices]]
[[ja:モバイルウェブサービス]]
[[es:Servicios web para móviles]]

Latest revision as of 16:29, 5 December 2016

Moodle comes with a built-in web service designed for mobile applications. It is required to run the official Mobile app. Enable it only if you want people to use the official app or if a third party app explicitly requires it.

Enabling mobile web services

A site administrator first must enable mobile web services:

  • In Administration > Site administration > Mobile app > Mobile settings
  • Check "Enable web services for mobile devices" and then
  • Click Save.

That's it! No other steps required.

The rest of this document explains the "behind the scenes".

What happens when the service is enabled

Enabling the mobile web services will automatically:

  • enable the web services system (Administration > Site administration > Advanced features)
  • enable the built-in external service called 'Mobile web services' - you should see this new mobile service listed as enabled
  • enable the xml-rpc protocol (for backward compatibility with unmaintained My Moodle app)
  • enable the rest protocol
  • allow the 'webservice/xmlrpc:use' capability for authenticated user role
  • allow the 'webservice/rest:use' capability for authenticated user role

Disabling mobile web services

When you uncheck 'Enable mobile web services', it will automatically:

  • disable the external service called 'Mobile web services'.
  • if 'Mobile web services' was the only external service enabled:
    • disable the web services system
    • disable the xml-rpc protocol
    • disable the rest protocol
    • remove the 'webservice/xmlrpc:use' capability for authenticated user role
    • remove the 'webservice/rest:use' capability for authenticated user role

See also