|
Dear …
We have a problem while trying to logon using the API’s {user logon} endpoint. So we have a question now.
Q1: Which documentation page correctly describes the login logic:
https://smarteye.besovideo.com/doc/bvcspapi/index.html
with password_encrypted = SHA256({username}_{password}) like “SHA256:6848d6405bf34bf9b2d82ed8822c756807632d3eaefedec90ac33cb32ac83671”
or
https://smarteye.besovideo.com/bvdoc/
with password_encrypted = SHA256( SHA256({username}_{password})_{timestamp} ) like “SHA256_T:ebc145ec6decbc3e7842f1fbc2bd6d0cf65e76f1dc3b7e21ebfd01a5c5a8c65a”
?
Even when I try both(!), I still get StatusCode=200(OK) but the JSON shows me an error like
{
"code": 14
, "msg ": "Password Error. remaining count:0"
, "data":
{"token": "_v0uoRImxxkTcwWnZ8_IYrw"
, "timeout": 0
, "appID": 0
, "remaining": 0
, "locking": 0
, "change_password": false
}
}
? What can be wrong here?
This is my C# code:
|
|