This documentation covers Review Board 1.6.
You can select a version above or
view the latest documentation.
104 - Login Failed
API Error Code |
104 |
HTTP Status Code |
HTTP 401 Unauthorized |
Error Text |
The username or password was not correct |
HTTP Headers |
WWW-Authenticate |
Description |
Your client attempted to log in, but didn’t provide valid credentials.
You’ll be provided with WWW-Authenticate HTTP headers so your client
can try again.
See Authenticating for more information.
|
Examples
application/json
{
"err": {
"code": 104,
"msg": "The username or password was not correct"
},
"stat": "fail"
}
application/xml
<?xml version="1.0" encoding="utf-8"?>
<rsp>
<stat>fail</stat>
<err>
<msg>The username or password was not correct</msg>
<code>104</code>
</err>
</rsp>