• GET /publishers/auth/{username}

    • username: the sign-in email address of the publisher
  • Request:

    • Authorization HTTP header: SHA256(USERNAME + ':' + MD5(PASSWORD))
  • Response:

    • 200 OK on success
    • 401 Unauthorized if the authentication fails
    • Sample
        {
            "userUid": "myUserUid",
            "secretKey": "mySecretKey",
            "accountId": 2
        }


NOTE: "secretKey" will change if publisher account password is changed.