Example #1
0
        public Task <ExpandoObject> GetCurrentLevel(IRequestCookieCollection cookies)
        {
            cookies.TryGetValue("gameUrl", out var url);

            url = url.ToLower();

            var gameId    = url.Split("gid=")[1];
            var domainUrl = url.Split("gamedetails")[0];

            var currentLevelUrl = $"{domainUrl}GameEngines/Encounter/Play/{gameId}?json=1";

            return(httpHelper.GetCurrentLevel(currentLevelUrl, cookies));
        }