Session

From ToxBank API Wiki
Jump to: navigation, search
Session


Contents

OpenAM

Currently, login/logout is done by calling OpenAM OpenTox_API_1.2_A&A

Java library

http://vedina.github.com/opentox-aa-cli/

Ruby library

...

Session REST interface

This could be a wrapper for the OpenTox_API_1.2_A&A (OpenAM) login/logout.

Login

Description Login
Resource Session
Method POST
URI /session
Parameters user name and password ,optionally scheme (default OpenAM) , OpenAM server URI (has default )
Header Parameters
Media Type (input) application/x-www-form-urlencoded
Results the token in the html body , optional cookie
Media Type (output) text/plain
Status code 200,401,403,500

Links: Page, Edit with form



cURL example

$curl -X POST -d "user=myname" -d "pass=mypass" https://toxbank.net/services/session
>HTTP/1.1 200 OK
>Content-Language: en
>Date: Fri, 16 Sep 2011 06:45:16 GMT
>Set-Cookie: subjectid=AQIC5wM2LY4SfczdemotokenzuhvIfb6LJj5SOVppnOTw7M.*AAJTSQACMDE.*; Path=/
>Set-Cookie: subjectid_secure=true; Path=/
>Content-Type: text/plain;charset=UTF-8
>Content-Length: 7241
>AQIC5wM2LY4SfczdemotokenzuhvIfb6LJj5SOVppnOTw7M.*AAJTSQACMDE.*

Logout

Description Logout
Resource Session
Method DELETE
URI /session
Parameters none
Header Parameters subjectid:SECURITY-TOKEN
Media Type (input) none
Results none
Media Type (output) text/plain
Status code 200,401,403,500

Links: Page, Edit with form



cURL example

$curl -X DELETE -H "subjectid:AQIC5wM2LY4SfczdemotokenzuhvIfb6LJj5SOVppnOTw7M.*AAJTSQACMDE.*" https://toxbank.net/services/session
Personal tools