How to log onto Mendix from an external website

2
If I have an external site and want to log into my Mendix app from that site using the Mendix login system integrated on to the site(ie have a login API where a user can link directly to the Mendix registration page and input their login credentials after receiving them in a mail.), is this possible?? How do i set this up? Deeplink?
asked
1 answers
4

Several possibilities

  1. Single Sign On (See appstore)
  2. Deeplink, create a unique long id, put that in a deeplink url, it will fetch the correct object and log that user in.
  3. See the login.html how to login from html/javascript
answered