forked from organicmaps/organicmaps
Missing HTTP 401.
This commit is contained in:
parent
1d80d472e1
commit
468eeba08e
2 changed files with 2 additions and 0 deletions
|
@ -306,6 +306,7 @@ string DebugPrint(OsmOAuth::ResponseCode const code)
|
|||
case OsmOAuth::ResponseCode::NetworkError: return "NetworkError";
|
||||
case OsmOAuth::ResponseCode::OK: return "OK";
|
||||
case OsmOAuth::ResponseCode::BadXML: return "BadXML";
|
||||
case OsmOAuth::ResponseCode::BadAuth: return "BadAuth";
|
||||
case OsmOAuth::ResponseCode::Redacted: return "Redacted";
|
||||
case OsmOAuth::ResponseCode::NotFound: return "NotFound";
|
||||
case OsmOAuth::ResponseCode::WrongMethod: return "WrongMethod";
|
||||
|
|
|
@ -38,6 +38,7 @@ public:
|
|||
NetworkError = -1,
|
||||
OK = 200,
|
||||
BadXML = 400,
|
||||
BadAuth = 401,
|
||||
Redacted = 403,
|
||||
NotFound = 404,
|
||||
WrongMethod = 405,
|
||||
|
|
Loading…
Add table
Reference in a new issue