Session

From ToxBank API Wiki
(Difference between revisions)
Jump to: navigation, search
m (Logout)
m
Line 1: Line 1:
 +
= OpenAM =
 +
 +
Currently, login/logout is done by calling OpenAM [[OpenTox_API_1.2_A%26A]]
 +
 +
== 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%26A]] (OpenAM) login/logout.
 
This could be a wrapper for the [[OpenTox_API_1.2_A%26A]] (OpenAM) login/logout.
  
= Login =
+
== Login ==
 
{{REST Operations
 
{{REST Operations
 
|REST_op_description=Login
 
|REST_op_description=Login
Line 25: Line 37:
 
  >AQIC5wM2LY4SfczdemotokenzuhvIfb6LJj5SOVppnOTw7M.*AAJTSQACMDE.*
 
  >AQIC5wM2LY4SfczdemotokenzuhvIfb6LJj5SOVppnOTw7M.*AAJTSQACMDE.*
  
= Logout =
+
== Logout ==
 
{{REST Operations
 
{{REST Operations
 
|REST_op_description=Logout
 
|REST_op_description=Logout

Revision as of 07:15, 16 September 2011

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 [[]]
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


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 [[]]
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


cURL example

$curl -X DELETE -H "subjectid:AQIC5wM2LY4SfczdemotokenzuhvIfb6LJj5SOVppnOTw7M.*AAJTSQACMDE.*" https://toxbank.net/services/session
Facts about SessionRDF feed
Acts on
Has output media typetext/plain  +
Has status code200,401,403,500  +
Personal tools