Rest logout

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-07-2013 05:41 AM
we all know that we login into activiti using RESTFUL api
e.g —>
http://**********:9090/activiti-rest/service/login
and pass credential in body
{
"userId": "kermit",
"password": "kermit"
}
but is there a way that we can logout from activiti using RESTFUL api??
e.g —>
http://**********:9090/activiti-rest/service/login
and pass credential in body
{
"userId": "kermit",
"password": "kermit"
}
but is there a way that we can logout from activiti using RESTFUL api??
Labels:
- Labels:
-
Archive
1 REPLY 1

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-07-2013 02:40 PM
Well, actually the REST API is stateless, so you don't need to logout.
The login REST service is only to validate your username and password. It doesn't create a session or something like that.
Best regards,
The login REST service is only to validate your username and password. It doesn't create a session or something like that.
Best regards,
