REST API:logout Resource
From LongJump Support Wiki
Revision as of 23:07, 3 September 2010 by imported>Aeric
Performs a Logout action via the REST API
- Method
- GET
- URI
- https://{domain}/networking/rest/logout
- Response
<platform> <message> <code>0</code> <description>Success</description> </message> </platform>
- Sample Logout Code
This code taken from the BaseClient sample shows how to make a REST logout request. (It ignores HTTP return codes, because the goal is to log out, and pretty much the only way to get an error would be if the session had already terminated.)
public void logout() { System.out.println("Logging out"); String url = baseUrl + "/networking/rest/logout"; Resource logoutResource = this.client.resource(url); logoutResource.accept("application/xml").get(); }