Files
EpinelPS/nksrv/IntlServer/JupiterAuthLogin.cs
2024-07-24 10:21:03 -04:00

34 lines
733 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace nksrv.IntlServer
{
internal class JupiterAuthLogin : IntlMsgHandler
{
public override bool RequiresAuth => false;
protected override async Task HandleAsync()
{
await WriteJsonStringAsync(@"{
""result"": {
""error_code"": 0,
""error_message"": ""COMM_SUCC""
},
""channel"": 0,
""game_id"": ""0"",
""openid"": """",
""uid"": """",
""biz_ticket"": """",
""expire_interval"": 0,
""refresh_interval"": 0,
""login_key"": """",
""login_ticket"": """",
""third_uid"": """"
}", true);
}
}
}