Skip to content

Documentation on Wilma 2FA auth #1

@developerfromjokela

Description

@developerfromjokela

Wilma has OTP built-in.
kuva

Here's HTML source code:

  
<input type="hidden" id="mfa-formkey" value="passwd:56:e41c76b9c3a1917b5c2118613ebc67f4">

Dialog is not here. It's unnecessary.

Actual checking of that 2fa code is a POST request to: https://<wilmaserver>/api/v1/accounts/me/mfa/otp/check
Post Data:

  • payload: JSON object ({"otp":"<OTPCODE>"})
  • formkey: mfa-formkey from HTML

Failed response:

{
   "error":{
      "statusCode":400,
      "internalErrorCode":"mfa-001",
      "message":"Virheellinen kysely",
      "description":"Virheelliset parametrit"
   }
}

Invalid code response:

{"statusCode":200,"payload":{"success":false}}

Successful code response:

{"statusCode":200,"payload":{"success":true}}

After successul response, we can do Wilma requests as typically we do

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions