Logging in
From DreamFactory
Toddappleton (Talk | contribs) |
Toddappleton (Talk | contribs) |
||
Line 1: | Line 1: | ||
− | === | + | === Logging in as an Admin === |
− | The Admin login API is api/v2/system/admin/session | + | The Admin login API endpoint is api/v2/system/admin/session |
− | + | Request URL | |
− | <pre>POST https:// | + | <pre>POST https://foo.com/api/v2/system/admin/session</pre> |
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | Request body | |
− | |||
<source lang="JavaScript"> | <source lang="JavaScript"> | ||
{ | { | ||
− | "email": " | + | "email": "admin@example.com", |
"password": "secret", | "password": "secret", | ||
"remember_me": false | "remember_me": false | ||
} | } | ||
</source> | </source> | ||
− | |||
− | |||
+ | cURL | ||
− | + | <pre>curl -i -k -3 -X POST "http://localhost:8080/api/v2/system/admin/session" -d '{ "email" : "admin@example.com", "password" : "secret" }' -H "Content-Type: application/json"</pre> | |
− | + | Note: Set remember_me=true to get a JWT (token) that can be refreshed forever (until logout) without authentication.'' | |
− | + | === Log in as a User (non-admin) === | |
− | + | The non-admin login API endpoint is api/v2/user/session | |
− | + | Request URL | |
− | + | <pre>POST https://foo.com/api/v2/user/session</pre> | |
− | + | Request body | |
− | Request body | + | |
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | |||
<source lang="JavaScript"> | <source lang="JavaScript"> | ||
{ | { | ||
− | "email": " | + | "email": "user@example.com", |
"password": "secret", | "password": "secret", | ||
"remember_me": false | "remember_me": false | ||
} | } | ||
</source> | </source> | ||
− | |||
− | |||
+ | cURL | ||
+ | |||
+ | <pre>curl -i -k -3 -X POST "http://localhost:8080/api/v2/user/session" -d '{ "email" : "user@example.com", "password" : "secret" }' -H "Content-Type: application/json"</pre> | ||
− | + | Note: Set remember_me=true to get a JWT (token) that can be refreshed forever (until logout) without authentication.'' |
Revision as of 18:36, 30 June 2016
Logging in as an Admin
The Admin login API endpoint is api/v2/system/admin/session
Request URL
POST https://foo.com/api/v2/system/admin/session
Request body
{ "email": "admin@example.com", "password": "secret", "remember_me": false }
cURL
curl -i -k -3 -X POST "http://localhost:8080/api/v2/system/admin/session" -d '{ "email" : "admin@example.com", "password" : "secret" }' -H "Content-Type: application/json"
Note: Set remember_me=true to get a JWT (token) that can be refreshed forever (until logout) without authentication.
Log in as a User (non-admin)
The non-admin login API endpoint is api/v2/user/session
Request URL
POST https://foo.com/api/v2/user/session
Request body
{ "email": "user@example.com", "password": "secret", "remember_me": false }
cURL
curl -i -k -3 -X POST "http://localhost:8080/api/v2/user/session" -d '{ "email" : "user@example.com", "password" : "secret" }' -H "Content-Type: application/json"
Note: Set remember_me=true to get a JWT (token) that can be refreshed forever (until logout) without authentication.