Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 5.3

...

/auth/keepalive
Info

Updates this a users cookie to extend session for another 15 30 minutes from now.  Used to keep a session alive.  Will return false if a session has died or another already timed out or is logged out (either manually or because the same user has logged in .elsewhere)

Authentication

Required, see Auth - Login

Arguments

none      

Example

http://<SERVER-NAME>/infinite.ikanow.com/api/auth/keepalive

Example Response
Info
Code Block

{
      response: {
          action: "Keep Alive"
          success: true
          message: "Cookie kept alive, 15min left."
          time: 35
      }

}

...