Mobile Front-end user management for October CMS.
** Update: This plugin now works independent of the Mobile & RainLab User plugin. **
This plugin is similar to the RainLab.User plugin except it’s built to work with mobile front-ends. It exposes RESTful API nodes that enable interaction with the backend thereby allowing users to sign up and login.
Tutorial and demonstration of the plugin here.
- Completely extensible.
- Select either login via Backend or Frontend (requires RainLab.User plugin) user models.
- Compatible with the multiple mobile apps feature of the mobile plugin.
- Dashboard widget to provide user signup and register analytics.
- Forgot password and signing out nodes (Currently, you can do it through website only).
- Multiple Auth Schemes for better security.
On the mobile app, you will have to make a call to the backend using the REST API that has been provided. Right now, the API works like this:
Resource URL: /api/v1/account/signin
Parameters | Description |
---|---|
instance_id | A unique ID, such as device ID or an ID generated using Google’s Instance ID API. Eg. 573b61d82b4e46e3 |
package | The package name of the application. Must match the name specified in the variants. Eg. com.acme.myapp |
email (or) username* | The login attribute for the user attempting to sign in. |
password* | The password for the user attempting to sign in. |
Resource URL: /api/v1/account/register
Parameters | Description |
---|---|
name | The name of the user attempting registration. |
email* | The email for the user attempting registration. |
username | The username for the user attempting registration. |
password* | The password for the user attempting registration. |
All * (asterisk) fields are mandatory.