SEBWIN-405: Fixed timestamp format for server communication.
This commit is contained in:
parent
2ade9e15b4
commit
9817da759c
1 changed files with 7 additions and 2 deletions
|
@ -295,7 +295,7 @@ namespace SafeExamBrowser.Server
|
||||||
var json = new JObject
|
var json = new JObject
|
||||||
{
|
{
|
||||||
["type"] = ToLogType(message.Severity),
|
["type"] = ToLogType(message.Severity),
|
||||||
["timestamp"] = message.DateTime.Ticks,
|
["timestamp"] = ToUnixTimestamp(message.DateTime),
|
||||||
["text"] = message.Message
|
["text"] = message.Message
|
||||||
};
|
};
|
||||||
var content = json.ToString();
|
var content = json.ToString();
|
||||||
|
@ -314,7 +314,7 @@ namespace SafeExamBrowser.Server
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
var authorization = ("Authorization", $"Bearer {oauth2Token}");
|
var authorization = ("Authorization", $"Bearer {oauth2Token}");
|
||||||
var content = $"timestamp={DateTime.Now.Ticks}&ping-number={++pingNumber}";
|
var content = $"timestamp={ToUnixTimestamp(DateTime.Now)}&ping-number={++pingNumber}";
|
||||||
var contentType = "application/x-www-form-urlencoded";
|
var contentType = "application/x-www-form-urlencoded";
|
||||||
var token = ("SEBConnectionToken", connectionToken);
|
var token = ("SEBConnectionToken", connectionToken);
|
||||||
var success = TryExecute(HttpMethod.Post, api.PingEndpoint, out var response, content, contentType, authorization, token);
|
var success = TryExecute(HttpMethod.Post, api.PingEndpoint, out var response, content, contentType, authorization, token);
|
||||||
|
@ -596,5 +596,10 @@ namespace SafeExamBrowser.Server
|
||||||
{
|
{
|
||||||
return $"{(int?) response?.StatusCode} {response?.StatusCode} {response?.ReasonPhrase}";
|
return $"{(int?) response?.StatusCode} {response?.StatusCode} {response?.ReasonPhrase}";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private long ToUnixTimestamp(DateTime date)
|
||||||
|
{
|
||||||
|
return new DateTimeOffset(date).ToUnixTimeMilliseconds();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue