diff --git a/.vs/Socioboard/v14/.suo b/.vs/Socioboard/v14/.suo index 565289e2f..c4c06848b 100644 Binary files a/.vs/Socioboard/v14/.suo and b/.vs/Socioboard/v14/.suo differ diff --git a/src/Api.Socioboard/Controllers/DiscoveryController.cs b/src/Api.Socioboard/Controllers/DiscoveryController.cs index 054f84123..d0e17e302 100644 --- a/src/Api.Socioboard/Controllers/DiscoveryController.cs +++ b/src/Api.Socioboard/Controllers/DiscoveryController.cs @@ -77,5 +77,19 @@ public IActionResult DiscoveryHistory(long userId) return Ok(lstdiscovery); } + [HttpPost("YoutubeSearch")] + public IActionResult YoutubeSearch(string q, int page, string pagecode) + { + if (page == 0) + { + List lstVideoss = Helper.GoogleHelper.YoutubeSearch(q, _appSettings); + return Ok(lstVideoss); + } + else + { + List lstVideoss = Helper.GoogleHelper.YoutubeSearchPageCode(q, pagecode, _appSettings); + return Ok(lstVideoss); + } + } } } diff --git a/src/Api.Socioboard/Controllers/WebHookController.cs b/src/Api.Socioboard/Controllers/WebHookController.cs index 29b17dede..27fae78a3 100644 --- a/src/Api.Socioboard/Controllers/WebHookController.cs +++ b/src/Api.Socioboard/Controllers/WebHookController.cs @@ -262,11 +262,7 @@ public async Task Post() - try - { - _FacebookPagePost.sharedate = DateTime.UtcNow.ToString("yyyy/MM/dd HH:mm:ss"); - } - catch { } + try { diff --git a/src/Api.Socioboard/Helper/GoogleHelper.cs b/src/Api.Socioboard/Helper/GoogleHelper.cs index b41d6678b..4f08cd823 100644 --- a/src/Api.Socioboard/Helper/GoogleHelper.cs +++ b/src/Api.Socioboard/Helper/GoogleHelper.cs @@ -129,7 +129,7 @@ public static class GoogleHelper string channelid = item["id"].ToString(); string channelname = item["snippet"]["title"].ToString(); string channelimage = item["snippet"]["thumbnails"]["default"]["url"].ToString(); - channelimage = channelimage.Replace(".jpg",""); + channelimage = channelimage.Replace(".jpg", ""); string publishdate = item["snippet"]["publishedAt"].ToString(); string viewscount = item["statistics"]["viewCount"].ToString(); string commentscount = item["statistics"]["commentCount"].ToString(); @@ -189,5 +189,150 @@ public static class GoogleHelper return lstYoutubeProfiles; } + public static List YoutubeSearch(string q, Helper.AppSettings _appSettings) + { + List lstYoutubeVideos = new List(); + string access_token = string.Empty; + string refresh_token = string.Empty; + Video _Search = new Video(_appSettings.GoogleConsumerKey, _appSettings.GoogleConsumerSecret, _appSettings.GoogleRedirectUri); + + string pageCodeinit = ""; + try + { + string videosData = _Search.Get_Search_List(_appSettings.GoogleApiKey, q); + JObject JvideosData = JObject.Parse(videosData); + try + { + pageCodeinit = JvideosData["nextPageToken"].ToString(); + } + catch + { } + + foreach (var item in JvideosData["items"]) + { + Domain.Socioboard.Models.Mongo.YoutubeSearch _objVideosDataes = new Domain.Socioboard.Models.Mongo.YoutubeSearch(); + + try + { + _objVideosDataes.YtVideoId = item["id"]["videoId"].ToString(); + _objVideosDataes.searchType = "video"; + } + catch + { + try + { + _objVideosDataes.YtVideoId = item["id"]["playlistId"].ToString(); + _objVideosDataes.searchType = "playlist"; + } + catch + { + _objVideosDataes.YtVideoId = item["id"]["channelId"].ToString(); + _objVideosDataes.searchType = "channel"; + } + } + _objVideosDataes.YtChannelId = item["snippet"]["channelId"].ToString(); + _objVideosDataes.VdoUrl = "https://www.youtube.com/watch?v=" + _objVideosDataes.YtVideoId; + _objVideosDataes.VdoTitle = item["snippet"]["title"].ToString(); + _objVideosDataes.VdoPublishDate = (Convert.ToDateTime(item["snippet"]["publishedAt"].ToString())).ToString("MMM dd, yyyy"); + try + { + _objVideosDataes.VdoImage = item["snippet"]["thumbnails"]["medium"]["url"].ToString(); + } + catch + { + _objVideosDataes.VdoImage = item["snippet"]["thumbnails"]["default"]["url"].ToString(); + } + _objVideosDataes.VdoEmbed = "https://www.youtube.com/embed/" + _objVideosDataes.YtVideoId; + _objVideosDataes.VdoDescription = item["snippet"]["description"].ToString(); + _objVideosDataes.channelTitle = item["snippet"]["channelTitle"].ToString(); + _objVideosDataes.Date = Convert.ToDateTime(item["snippet"]["publishedAt"].ToString()); + _objVideosDataes.dateTimeUnix = DateExtension.ToUnixTimestamp(_objVideosDataes.Date); + _objVideosDataes.channelUrl = "https://www.youtube.com/channel/" + _objVideosDataes.YtChannelId; + _objVideosDataes.playlistUrl = "https://www.youtube.com/playlist?list=" + _objVideosDataes.YtVideoId; + _objVideosDataes.pageCode = pageCodeinit; + lstYoutubeVideos.Add(_objVideosDataes); + + } + } + catch + { + + } + return lstYoutubeVideos; + } + + + public static List YoutubeSearchPageCode(string q, string pagecode, Helper.AppSettings _appSettings) + { + List lstYoutubeVideos = new List(); + string access_token = string.Empty; + string refresh_token = string.Empty; + Video _Search = new Video(_appSettings.GoogleConsumerKey, _appSettings.GoogleConsumerSecret, _appSettings.GoogleRedirectUri); + + string pageCodeinit = ""; + try + { + string videosData = _Search.Get_Search_List_Page(_appSettings.GoogleApiKey, q, pagecode); + JObject JvideosData = JObject.Parse(videosData); + try + { + pageCodeinit = JvideosData["nextPageToken"].ToString(); + } + catch + { } + + foreach (var item in JvideosData["items"]) + { + Domain.Socioboard.Models.Mongo.YoutubeSearch _objVideosDataes = new Domain.Socioboard.Models.Mongo.YoutubeSearch(); + + try + { + _objVideosDataes.YtVideoId = item["id"]["videoId"].ToString(); + _objVideosDataes.searchType = "video"; + } + catch + { + try + { + _objVideosDataes.YtVideoId = item["id"]["playlistId"].ToString(); + _objVideosDataes.searchType = "playlist"; + } + catch + { + _objVideosDataes.YtVideoId = item["id"]["channelId"].ToString(); + _objVideosDataes.searchType = "channel"; + } + } + _objVideosDataes.YtChannelId = item["snippet"]["channelId"].ToString(); + _objVideosDataes.VdoUrl = "https://www.youtube.com/watch?v=" + _objVideosDataes.YtVideoId; + _objVideosDataes.VdoTitle = item["snippet"]["title"].ToString(); + _objVideosDataes.VdoPublishDate = (Convert.ToDateTime(item["snippet"]["publishedAt"].ToString())).ToString("MMM dd, yyyy"); + try + { + _objVideosDataes.VdoImage = item["snippet"]["thumbnails"]["medium"]["url"].ToString(); + } + catch + { + _objVideosDataes.VdoImage = item["snippet"]["thumbnails"]["default"]["url"].ToString(); + } + _objVideosDataes.VdoEmbed = "https://www.youtube.com/embed/" + _objVideosDataes.YtVideoId; + _objVideosDataes.VdoDescription = item["snippet"]["description"].ToString(); + _objVideosDataes.channelTitle = item["snippet"]["channelTitle"].ToString(); + _objVideosDataes.Date = Convert.ToDateTime(item["snippet"]["publishedAt"].ToString()); + _objVideosDataes.dateTimeUnix = DateExtension.ToUnixTimestamp(_objVideosDataes.Date); + _objVideosDataes.channelUrl = "https://www.youtube.com/channel/" + _objVideosDataes.YtChannelId; + _objVideosDataes.playlistUrl = "https://www.youtube.com/playlist?list=" + _objVideosDataes.YtVideoId; + _objVideosDataes.pageCode = pageCodeinit; + lstYoutubeVideos.Add(_objVideosDataes); + + } + } + catch + { + + } + return lstYoutubeVideos; + } + } } diff --git a/src/Api.Socioboard/Repositories/FacebookRepository.cs b/src/Api.Socioboard/Repositories/FacebookRepository.cs index 0110564bc..5297a3a63 100644 --- a/src/Api.Socioboard/Repositories/FacebookRepository.cs +++ b/src/Api.Socioboard/Repositories/FacebookRepository.cs @@ -712,11 +712,11 @@ public static void SaveFacebookFeeds(string AccessToken, string ProfileId, Helpe } objFacebookFeed.FeedDescription = message; objFacebookFeed.EntryDate = DateTime.UtcNow.ToString("yyyy/MM/dd HH:mm:ss"); - try - { - objFacebookFeed.sharedate = DateTime.UtcNow.ToString("yyyy/MM/dd HH:mm:ss");//this is feed date value for share feed in another socail media - } - catch { } + //try + //{ + // objFacebookFeed.sharedate = DateTime.UtcNow;//this is feed date value for share feed in another socail media + //} + //catch { } objFacebookFeed._facebookComment = FbPostComments(objFacebookFeed.FeedId, AccessToken, settings, _logger); try { @@ -1671,7 +1671,15 @@ public static List FbPostComments(string postid, string Acce { return await result; }); - IList lstFbFeeds = task.Result; + IList lstFbFeeds = null; + try + { + lstFbFeeds = task.Result; + } + catch (Exception ex) + { + + } //var sortt = lstFbFeeds.OrderByDescending(t => Convert.ToDateTime(t.EntryDate)); foreach (var item in lstFbFeeds)//sortt.ToList()) { @@ -1717,23 +1725,23 @@ public static List FbPostComments(string postid, string Acce foreach (var item in lstFbFeeds.ToList()) { Domain.Socioboard.Models.Mongo.facebookfeed _intafeed = new Domain.Socioboard.Models.Mongo.facebookfeed(); - MongoRepository mongorepocomment = new MongoRepository("MongoFbPostComment", settings); - var buildecommentr = Builders.Sort; - var sortcomment = buildecommentr.Descending(t => t.Likes); - var resultcomment = mongorepocomment.FindWithRange(t => t.PostId == item.FeedId && (!t.CommentId.Contains("{")), sortcomment, 0, 50); - var taskcomment = Task.Run(async () => - { - return await resultcomment; - }); - IList lstFbPostComment = taskcomment.Result; - lstFbPostComment = lstFbPostComment.OrderByDescending(t => t.Commentdate).ToList(); - item.Commentcount = lstFbPostComment.Count.ToString(); - foreach (var commentItems in lstFbPostComment) - { - commentItems.Commentdate = Convert.ToDateTime(commentItems.Commentdate).AddMinutes(330).ToString(); - } + //MongoRepository mongorepocomment = new MongoRepository("MongoFbPostComment", settings); + //var buildecommentr = Builders.Sort; + //var sortcomment = buildecommentr.Descending(t => t.Likes); + //var resultcomment = mongorepocomment.FindWithRange(t => t.PostId == item.FeedId && (!t.CommentId.Contains("{")), sortcomment, 0, 50); + //var taskcomment = Task.Run(async () => + //{ + // return await resultcomment; + //}); + //IList lstFbPostComment = taskcomment.Result; + //lstFbPostComment = lstFbPostComment.OrderByDescending(t => t.Commentdate).ToList(); + //item.Commentcount = lstFbPostComment.Count.ToString(); + //foreach (var commentItems in lstFbPostComment) + //{ + // commentItems.Commentdate = Convert.ToDateTime(commentItems.Commentdate).AddMinutes(330).ToString(); + //} _intafeed._facebookFeed = item; - _intafeed._facebookComment = lstFbPostComment.ToList(); + //_intafeed._facebookComment = lstFbPostComment.ToList(); lstfacebookfeed.Add(_intafeed); } return lstfacebookfeed; @@ -1749,24 +1757,24 @@ public static List FbPostComments(string postid, string Acce lstFbFeeds = lstFbFeeds.OrderByDescending(t => Convert.ToInt64(t.Commentcount)).ToList(); foreach (var item in lstFbFeeds.ToList()) { - Domain.Socioboard.Models.Mongo.facebookfeed _intafeed = new Domain.Socioboard.Models.Mongo.facebookfeed(); - MongoRepository mongorepocomment = new MongoRepository("MongoFbPostComment", settings); - var buildecommentr = Builders.Sort; - var sortcomment = buildecommentr.Descending(t => t.Likes); - var resultcomment = mongorepocomment.FindWithRange(t => t.PostId == item.FeedId && (!t.CommentId.Contains("{")), sortcomment, 0, 50); - var taskcomment = Task.Run(async () => - { - return await resultcomment; - }); - IList lstFbPostComment = taskcomment.Result; - lstFbPostComment = lstFbPostComment.OrderByDescending(t => t.Commentdate).ToList(); - item.Commentcount = lstFbPostComment.Count.ToString(); - foreach (var commentItems in lstFbPostComment) - { - commentItems.Commentdate = Convert.ToDateTime(commentItems.Commentdate).AddMinutes(330).ToString(); - } - _intafeed._facebookFeed = item; - _intafeed._facebookComment = lstFbPostComment.ToList(); + Domain.Socioboard.Models.Mongo.facebookfeed _intafeed = new Domain.Socioboard.Models.Mongo.facebookfeed(); + // MongoRepository mongorepocomment = new MongoRepository("MongoFbPostComment", settings); + // var buildecommentr = Builders.Sort; + // var sortcomment = buildecommentr.Descending(t => t.Likes); + // var resultcomment = mongorepocomment.FindWithRange(t => t.PostId == item.FeedId && (!t.CommentId.Contains("{")), sortcomment, 0, 50); + // var taskcomment = Task.Run(async () => + // { + // return await resultcomment; + // }); + // IList lstFbPostComment = taskcomment.Result; + // lstFbPostComment = lstFbPostComment.OrderByDescending(t => t.Commentdate).ToList(); + // item.Commentcount = lstFbPostComment.Count.ToString(); + // foreach (var commentItems in lstFbPostComment) + // { + // commentItems.Commentdate = Convert.ToDateTime(commentItems.Commentdate).AddMinutes(330).ToString(); + // } + _intafeed._facebookFeed = item; + // _intafeed._facebookComment = lstFbPostComment.ToList(); lstfacebookfeed.Add(_intafeed); } return lstfacebookfeed; @@ -1783,23 +1791,23 @@ public static List FbPostComments(string postid, string Acce foreach (var item in lstFbFeeds.ToList()) { Domain.Socioboard.Models.Mongo.facebookfeed _intafeed = new Domain.Socioboard.Models.Mongo.facebookfeed(); - MongoRepository mongorepocomment = new MongoRepository("MongoFbPostComment", settings); - var buildecommentr = Builders.Sort; - var sortcomment = buildecommentr.Descending(t => t.Likes); - var resultcomment = mongorepocomment.FindWithRange(t => t.PostId == item.FeedId && (!t.CommentId.Contains("{")), sortcomment, 0, 50); - var taskcomment = Task.Run(async () => - { - return await resultcomment; - }); - IList lstFbPostComment = taskcomment.Result; - lstFbPostComment = lstFbPostComment.OrderByDescending(t => t.Commentdate).ToList(); - item.Commentcount = lstFbPostComment.Count.ToString(); - foreach (var commentItems in lstFbPostComment) - { - commentItems.Commentdate = Convert.ToDateTime(commentItems.Commentdate).AddMinutes(330).ToString(); - } + //MongoRepository mongorepocomment = new MongoRepository("MongoFbPostComment", settings); + //var buildecommentr = Builders.Sort; + //var sortcomment = buildecommentr.Descending(t => t.Likes); + //var resultcomment = mongorepocomment.FindWithRange(t => t.PostId == item.FeedId && (!t.CommentId.Contains("{")), sortcomment, 0, 50); + //var taskcomment = Task.Run(async () => + //{ + // return await resultcomment; + //}); + //IList lstFbPostComment = taskcomment.Result; + //lstFbPostComment = lstFbPostComment.OrderByDescending(t => t.Commentdate).ToList(); + //item.Commentcount = lstFbPostComment.Count.ToString(); + //foreach (var commentItems in lstFbPostComment) + //{ + // commentItems.Commentdate = Convert.ToDateTime(commentItems.Commentdate).AddMinutes(330).ToString(); + //} _intafeed._facebookFeed = item; - _intafeed._facebookComment = lstFbPostComment.ToList(); + //_intafeed._facebookComment = lstFbPostComment.ToList(); lstfacebookfeed.Add(_intafeed); } return lstfacebookfeed; @@ -1816,23 +1824,23 @@ public static List FbPostComments(string postid, string Acce foreach (var item in lstFbFeeds.ToList()) { Domain.Socioboard.Models.Mongo.facebookfeed _intafeed = new Domain.Socioboard.Models.Mongo.facebookfeed(); - MongoRepository mongorepocomment = new MongoRepository("MongoFbPostComment", settings); - var buildecommentr = Builders.Sort; - var sortcomment = buildecommentr.Descending(t => t.Likes); - var resultcomment = mongorepocomment.FindWithRange(t => t.PostId == item.FeedId && (!t.CommentId.Contains("{")), sortcomment, 0, 50); - var taskcomment = Task.Run(async () => - { - return await resultcomment; - }); - IList lstFbPostComment = taskcomment.Result; - lstFbPostComment = lstFbPostComment.OrderByDescending(t => t.Commentdate).ToList(); - item.Commentcount = lstFbPostComment.Count.ToString(); - foreach (var commentItems in lstFbPostComment) - { - commentItems.Commentdate = Convert.ToDateTime(commentItems.Commentdate).AddMinutes(330).ToString(); - } + //MongoRepository mongorepocomment = new MongoRepository("MongoFbPostComment", settings); + //var buildecommentr = Builders.Sort; + //var sortcomment = buildecommentr.Descending(t => t.Likes); + //var resultcomment = mongorepocomment.FindWithRange(t => t.PostId == item.FeedId && (!t.CommentId.Contains("{")), sortcomment, 0, 50); + //var taskcomment = Task.Run(async () => + //{ + // return await resultcomment; + //}); + //IList lstFbPostComment = taskcomment.Result; + //lstFbPostComment = lstFbPostComment.OrderByDescending(t => t.Commentdate).ToList(); + //item.Commentcount = lstFbPostComment.Count.ToString(); + //foreach (var commentItems in lstFbPostComment) + //{ + // commentItems.Commentdate = Convert.ToDateTime(commentItems.Commentdate).AddMinutes(330).ToString(); + //} _intafeed._facebookFeed = item; - _intafeed._facebookComment = lstFbPostComment.ToList(); + //_intafeed._facebookComment = lstFbPostComment.ToList(); lstfacebookfeed.Add(_intafeed); } return lstfacebookfeed; @@ -2218,6 +2226,8 @@ public static void UpdateDeleteLinkShareathon(string Facebookpageid, long userId } } + + public static string CompareDateWithclient(string clientdate, string scheduletime) { try diff --git a/src/Api.Socioboard/Repositories/TwitterRepository.cs b/src/Api.Socioboard/Repositories/TwitterRepository.cs index d1deb8eeb..701c675b1 100644 --- a/src/Api.Socioboard/Repositories/TwitterRepository.cs +++ b/src/Api.Socioboard/Repositories/TwitterRepository.cs @@ -1,5 +1,6 @@ using Api.Socioboard.Helper; using Api.Socioboard.Model; +using Domain.Socioboard.Enum; using Domain.Socioboard.Models.Mongo; using Microsoft.Extensions.Logging; using MongoDB.Bson; @@ -593,7 +594,8 @@ public static string DeleteProfile(Model.DatabaseRepository dbr, string profileI { return await result; }); - IList lstTwtTweets = task.Result; + IList TwtTweets = task.Result; + IList lstTwtTweets = TwtTweets.Where(t=>t.type==TwitterMessageType.TwitterUsertweet).ToList(); if (lstTwtTweets != null) { diff --git a/src/Api.Socioboard/wwwroot/log/log-20171110.txt b/src/Api.Socioboard/wwwroot/log/log-20171110.txt new file mode 100644 index 000000000..6ef2363d0 --- /dev/null +++ b/src/Api.Socioboard/wwwroot/log/log-20171110.txt @@ -0,0 +1,435 @@ +2017-11-10 19:51:54.726 +05:30 [Debug] Hosting starting +2017-11-10 19:51:57.712 +05:30 [Debug] Hosting started +2017-11-10 19:52:01.123 +05:30 [Debug] Connection id ""0HL988PKA4KA8"" started. +2017-11-10 19:52:01.123 +05:30 [Debug] Connection id ""0HL988PKA4KA9"" started. +2017-11-10 19:52:01.373 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-11-10 19:52:01.374 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-11-10 19:52:01.452 +05:30 [Information] Request finished in 126.3714ms 200 +2017-11-10 19:52:01.492 +05:30 [Debug] Connection id ""0HL988PKA4KA9"" completed keep alive response. +2017-11-10 19:52:04.169 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-11-10 19:52:04.232 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"d6859b87-c0c1-4ca1-a911-aff148bc184b"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-11-10 19:52:04.371 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-11-10 19:52:04.513 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-11-10 19:52:04.515 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-11-10 19:52:04.549 +05:30 [Debug] No information found on request to perform content negotiation. +2017-11-10 19:52:04.554 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-11-10 19:52:04.556 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-11-10 19:52:05.498 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 1116.0369ms +2017-11-10 19:52:05.603 +05:30 [Information] Request finished in 4292.1442ms 200 application/json; charset=utf-8 +2017-11-10 19:52:05.606 +05:30 [Debug] Connection id ""0HL988PKA4KA8"" completed keep alive response. +2017-11-10 19:52:05.644 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/favicon.ico +2017-11-10 19:52:05.648 +05:30 [Debug] Request did not match any routes. +2017-11-10 19:52:05.678 +05:30 [Debug] The request path "" does not match the path filter +2017-11-10 19:52:05.685 +05:30 [Information] Request finished in 40.9983ms 404 +2017-11-10 19:52:05.686 +05:30 [Debug] Connection id ""0HL988PKA4KA9"" completed keep alive response. +2017-11-10 19:52:36.801 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 55 +2017-11-10 19:52:36.804 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-11-10 19:52:36.806 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-11-10 19:52:40.676 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-11-10 19:52:46.402 +05:30 [Fatal] Unable to connect to any of the specified MySQL hosts. +2017-11-10 19:52:46.474 +05:30 [Error] at Api.Socioboard.Helper.SessionFactory.Init(IHostingEnvironment env) in D:\SBPROJECT\Developer\src\Api.Socioboard\Helper\SessionFactory.cs:line 41 + at Api.Socioboard.Helper.SessionFactory.GetSessionFactory(IHostingEnvironment env) in D:\SBPROJECT\Developer\src\Api.Socioboard\Helper\SessionFactory.cs:line 57 + at Api.Socioboard.Helper.SessionFactory.GetNewSession(IHostingEnvironment env) in D:\SBPROJECT\Developer\src\Api.Socioboard\Helper\SessionFactory.cs:line 69 + at Api.Socioboard.Model.DatabaseRepository.Find[T](Expression`1 query) in D:\SBPROJECT\Developer\src\Api.Socioboard\Model\DatabaseRepository.cs:line 29 +2017-11-10 19:52:46.507 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-11-10 19:52:46.589 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-11-10 19:52:46.590 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-11-10 19:52:46.592 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 9785.4657ms +2017-11-10 19:52:46.596 +05:30 [Information] Request finished in 9794.8837ms 200 application/json; charset=utf-8 +2017-11-10 19:52:46.598 +05:30 [Debug] Connection id ""0HL988PKA4KA8"" completed keep alive response. +2017-11-10 19:53:48.037 +05:30 [Debug] Connection id ""0HL988PKA4KA9"" received FIN. +2017-11-10 19:53:48.037 +05:30 [Debug] Connection id ""0HL988PKA4KA8"" received FIN. +2017-11-10 19:53:48.038 +05:30 [Debug] Connection id ""0HL988PKA4KA8"" disconnecting. +2017-11-10 19:53:48.038 +05:30 [Debug] Connection id ""0HL988PKA4KA9"" disconnecting. +2017-11-10 19:53:48.039 +05:30 [Debug] Connection id ""0HL988PKA4KA9"" sending FIN. +2017-11-10 19:53:48.039 +05:30 [Debug] Connection id ""0HL988PKA4KA8"" sending FIN. +2017-11-10 19:53:48.047 +05:30 [Debug] Connection id ""0HL988PKA4KA9"" sent FIN with status "0". +2017-11-10 19:53:48.047 +05:30 [Debug] Connection id ""0HL988PKA4KA8"" sent FIN with status "0". +2017-11-10 19:53:48.050 +05:30 [Debug] Connection id ""0HL988PKA4KA9"" stopped. +2017-11-10 19:53:48.050 +05:30 [Debug] Connection id ""0HL988PKA4KA8"" stopped. +2017-11-10 19:54:13.991 +05:30 [Debug] Hosting starting +2017-11-10 19:54:14.238 +05:30 [Debug] Hosting started +2017-11-10 19:54:14.414 +05:30 [Debug] Connection id ""0HL988QS1A293"" started. +2017-11-10 19:54:14.414 +05:30 [Debug] Connection id ""0HL988QS1A294"" started. +2017-11-10 19:54:14.565 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-11-10 19:54:14.564 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-11-10 19:54:14.666 +05:30 [Information] Request finished in 133.6362ms 200 +2017-11-10 19:54:14.758 +05:30 [Debug] Connection id ""0HL988QS1A293"" completed keep alive response. +2017-11-10 19:54:15.640 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-11-10 19:54:15.698 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"523be047-190f-4aa5-ab5f-8165992fc31e"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-11-10 19:54:15.798 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-11-10 19:54:15.971 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-11-10 19:54:15.974 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-11-10 19:54:16.026 +05:30 [Debug] No information found on request to perform content negotiation. +2017-11-10 19:54:16.032 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-11-10 19:54:16.034 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-11-10 19:54:16.368 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 556.9056ms +2017-11-10 19:54:16.432 +05:30 [Information] Request finished in 1924.7325ms 200 application/json; charset=utf-8 +2017-11-10 19:54:16.434 +05:30 [Debug] Connection id ""0HL988QS1A294"" completed keep alive response. +2017-11-10 19:54:35.907 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 55 +2017-11-10 19:54:35.912 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-11-10 19:54:35.919 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-11-10 19:54:39.407 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-11-10 19:54:48.806 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-11-10 19:54:48.817 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-11-10 19:54:48.818 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-11-10 19:54:48.966 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 13046.7103ms +2017-11-10 19:54:48.968 +05:30 [Information] Request finished in 13063.3589ms 200 application/json; charset=utf-8 +2017-11-10 19:54:48.969 +05:30 [Debug] Connection id ""0HL988QS1A293"" completed keep alive response. +2017-11-10 19:54:49.444 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId= +2017-11-10 19:54:49.445 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-11-10 19:54:49.446 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-11-10 19:54:52.536 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", ""]) - ModelState is Valid +2017-11-10 19:54:54.599 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-11-10 19:54:54.599 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-11-10 19:54:54.600 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-11-10 19:54:54.668 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 5221.1447ms +2017-11-10 19:54:54.670 +05:30 [Information] Request finished in 5226.3031ms 200 application/json; charset=utf-8 +2017-11-10 19:54:54.671 +05:30 [Debug] Connection id ""0HL988QS1A294"" completed keep alive response. +2017-11-10 19:54:59.125 +05:30 [Debug] Connection id ""0HL988QS1A295"" started. +2017-11-10 19:54:59.150 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-11-10 19:54:59.155 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-11-10 19:54:59.159 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-11-10 19:54:59.310 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-11-10 19:54:59.310 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-11-10 19:54:59.356 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-11-10 19:54:59.362 +05:30 [Debug] Connection id ""0HL988QS1A296"" started. +2017-11-10 19:54:59.407 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-11-10 19:54:59.407 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-11-10 19:54:59.411 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-11-10 19:54:59.446 +05:30 [Debug] Connection id ""0HL988QS1A297"" started. +2017-11-10 19:54:59.596 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-11-10 19:54:59.596 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-11-10 19:54:59.597 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-11-10 19:55:00.776 +05:30 [Debug] Connection id ""0HL988QS1A298"" started. +2017-11-10 19:55:01.643 +05:30 [Debug] Connection id ""0HL988QS1A299"" started. +2017-11-10 19:55:02.041 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId=48 +2017-11-10 19:55:02.042 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-11-10 19:55:02.044 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-11-10 19:55:03.049 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=48 +2017-11-10 19:55:03.049 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-11-10 19:55:03.050 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-11-10 19:55:04.049 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 59 +2017-11-10 19:55:04.050 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-11-10 19:55:04.052 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-11-10 19:55:06.167 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-11-10 19:55:06.197 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-11-10 19:55:06.212 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-11-10 19:55:06.227 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-11-10 19:55:06.820 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-11-10 19:55:06.820 +05:30 [Debug] No information found on request to perform content negotiation. +2017-11-10 19:55:06.820 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-11-10 19:55:06.821 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-11-10 19:55:06.829 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 7228.7877ms +2017-11-10 19:55:06.832 +05:30 [Information] Request finished in 7704.9366ms 200 application/json; charset=utf-8 +2017-11-10 19:55:06.832 +05:30 [Debug] Connection id ""0HL988QS1A294"" completed keep alive response. +2017-11-10 19:55:07.166 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-11-10 19:55:07.170 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", "48"]) - ModelState is Valid +2017-11-10 19:55:07.206 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["202.83.19.158", "Chrome on Windows NT 6.3", "48"]) - ModelState is Valid +2017-11-10 19:55:08.611 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-11-10 19:55:08.612 +05:30 [Debug] No information found on request to perform content negotiation. +2017-11-10 19:55:08.612 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-11-10 19:55:08.613 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-11-10 19:55:08.620 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 9263.4543ms +2017-11-10 19:55:08.622 +05:30 [Information] Request finished in 9495.5878ms 200 application/json; charset=utf-8 +2017-11-10 19:55:08.622 +05:30 [Debug] Connection id ""0HL988QS1A295"" completed keep alive response. +2017-11-10 19:55:08.880 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-11-10 19:55:08.881 +05:30 [Debug] No information found on request to perform content negotiation. +2017-11-10 19:55:08.881 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-11-10 19:55:08.882 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-11-10 19:55:08.884 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 9723.3328ms +2017-11-10 19:55:08.886 +05:30 [Information] Request finished in 9776.9982ms 200 application/json; charset=utf-8 +2017-11-10 19:55:08.886 +05:30 [Debug] Connection id ""0HL988QS1A293"" completed keep alive response. +2017-11-10 19:55:08.996 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-11-10 19:55:08.996 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-11-10 19:55:08.997 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-11-10 19:55:08.998 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 6953.5235ms +2017-11-10 19:55:09.000 +05:30 [Information] Request finished in 6958.6732ms 200 application/json; charset=utf-8 +2017-11-10 19:55:09.000 +05:30 [Debug] Connection id ""0HL988QS1A297"" completed keep alive response. +2017-11-10 19:55:09.245 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-11-10 19:55:09.245 +05:30 [Debug] No information found on request to perform content negotiation. +2017-11-10 19:55:09.245 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-11-10 19:55:09.246 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-11-10 19:55:09.251 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 9797.9661ms +2017-11-10 19:55:09.273 +05:30 [Information] Request finished in 9894.2972ms 200 application/json; charset=utf-8 +2017-11-10 19:55:09.273 +05:30 [Debug] Connection id ""0HL988QS1A296"" completed keep alive response. +2017-11-10 19:55:09.690 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-11-10 19:55:09.691 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-11-10 19:55:09.692 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-11-10 19:55:09.696 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-11-10 19:55:09.700 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-11-10 19:55:09.700 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-11-10 19:55:09.700 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-11-10 19:55:09.700 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-11-10 19:55:09.700 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-11-10 19:55:09.827 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-11-10 19:55:09.828 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-11-10 19:55:09.828 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-11-10 19:55:10.446 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=48 +2017-11-10 19:55:10.447 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-11-10 19:55:10.447 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-11-10 19:55:10.913 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-11-10 19:55:10.914 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-11-10 19:55:10.916 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-11-10 19:55:10.923 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 6868.5392ms +2017-11-10 19:55:10.926 +05:30 [Information] Request finished in 6877.8928ms 200 application/json; charset=utf-8 +2017-11-10 19:55:10.927 +05:30 [Debug] Connection id ""0HL988QS1A299"" completed keep alive response. +2017-11-10 19:55:11.156 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-11-10 19:55:11.156 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-11-10 19:55:11.158 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-11-10 19:55:11.465 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-11-10 19:55:11.472 +05:30 [Debug] No information found on request to perform content negotiation. +2017-11-10 19:55:11.479 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-11-10 19:55:11.496 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-11-10 19:55:11.593 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 8541.3412ms +2017-11-10 19:55:11.595 +05:30 [Information] Request finished in 8546.1083ms 200 application/json; charset=utf-8 +2017-11-10 19:55:11.595 +05:30 [Debug] Connection id ""0HL988QS1A298"" completed keep alive response. +2017-11-10 19:55:11.750 +05:30 [Debug] Connection id ""0HL988QS1A298"" received FIN. +2017-11-10 19:55:11.751 +05:30 [Debug] Connection id ""0HL988QS1A298"" disconnecting. +2017-11-10 19:55:11.752 +05:30 [Debug] Connection id ""0HL988QS1A298"" sending FIN. +2017-11-10 19:55:11.761 +05:30 [Debug] Connection id ""0HL988QS1A298"" sent FIN with status "0". +2017-11-10 19:55:11.764 +05:30 [Debug] Connection id ""0HL988QS1A298"" stopped. +2017-11-10 19:55:12.788 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-11-10 19:55:12.837 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-11-10 19:55:12.891 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-11-10 19:55:12.914 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-11-10 19:55:13.473 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-11-10 19:55:13.473 +05:30 [Debug] No information found on request to perform content negotiation. +2017-11-10 19:55:13.473 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-11-10 19:55:13.475 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-11-10 19:55:13.477 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 3775.0249ms +2017-11-10 19:55:13.511 +05:30 [Information] Request finished in 3791.3009ms 200 application/json; charset=utf-8 +2017-11-10 19:55:13.511 +05:30 [Debug] Connection id ""0HL988QS1A294"" completed keep alive response. +2017-11-10 19:55:13.516 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-11-10 19:55:13.914 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-11-10 19:55:13.914 +05:30 [Debug] No information found on request to perform content negotiation. +2017-11-10 19:55:13.914 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-11-10 19:55:13.918 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-11-10 19:55:13.938 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 4217.29ms +2017-11-10 19:55:13.981 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-11-10 19:55:13.981 +05:30 [Information] Request finished in 4269.2925ms 200 application/json; charset=utf-8 +2017-11-10 19:55:13.982 +05:30 [Debug] No information found on request to perform content negotiation. +2017-11-10 19:55:13.982 +05:30 [Debug] Connection id ""0HL988QS1A295"" completed keep alive response. +2017-11-10 19:55:13.982 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-11-10 19:55:13.985 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-11-10 19:55:13.988 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 4294.5302ms +2017-11-10 19:55:13.991 +05:30 [Information] Request finished in 4301.0079ms 200 application/json; charset=utf-8 +2017-11-10 19:55:13.992 +05:30 [Debug] Connection id ""0HL988QS1A293"" completed keep alive response. +2017-11-10 19:55:14.187 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-11-10 19:55:14.187 +05:30 [Debug] No information found on request to perform content negotiation. +2017-11-10 19:55:14.187 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-11-10 19:55:14.202 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-11-10 19:55:14.221 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d525b71d26ee26"]) - ModelState is Valid +2017-11-10 19:55:14.222 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 4391.8945ms +2017-11-10 19:55:14.224 +05:30 [Information] Request finished in 4400.5306ms 200 application/json; charset=utf-8 +2017-11-10 19:55:14.225 +05:30 [Debug] Connection id ""0HL988QS1A297"" completed keep alive response. +2017-11-10 19:55:14.828 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-11-10 19:55:14.829 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-11-10 19:55:14.831 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-11-10 19:55:14.835 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3674.3751ms +2017-11-10 19:55:14.838 +05:30 [Information] Request finished in 3683.918ms 200 application/json; charset=utf-8 +2017-11-10 19:55:14.838 +05:30 [Debug] Connection id ""0HL988QS1A299"" completed keep alive response. +2017-11-10 19:55:14.849 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 59 +2017-11-10 19:55:14.849 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-11-10 19:55:14.849 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-11-10 19:55:16.076 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-11-10 19:55:16.077 +05:30 [Debug] No information found on request to perform content negotiation. +2017-11-10 19:55:16.077 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-11-10 19:55:16.078 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-11-10 19:55:16.079 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 5630.3422ms +2017-11-10 19:55:16.082 +05:30 [Information] Request finished in 5640.8938ms 200 application/json; charset=utf-8 +2017-11-10 19:55:16.087 +05:30 [Debug] Connection id ""0HL988QS1A296"" completed keep alive response. +2017-11-10 19:55:17.907 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["202.83.19.158", "Chrome on Windows NT 6.3", "48"]) - ModelState is Valid +2017-11-10 19:55:20.131 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-11-10 19:55:20.131 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-11-10 19:55:20.134 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-11-10 19:55:20.137 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 5285.1888ms +2017-11-10 19:55:20.141 +05:30 [Information] Request finished in 5295.3457ms 200 application/json; charset=utf-8 +2017-11-10 19:55:20.142 +05:30 [Debug] Connection id ""0HL988QS1A294"" completed keep alive response. +2017-11-10 19:55:43.270 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Facebook/GetTopFeeds?profileId=1155481037833115&userId=48&skip=0&count=10 +2017-11-10 19:55:43.270 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Facebook/GetTopFeeds"'. +2017-11-10 19:55:43.272 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacebookController.GetTopFeeds (Api.Socioboard)" +2017-11-10 19:55:45.383 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacebookController.GetTopFeeds (Api.Socioboard)" with arguments (["1155481037833115", "48", "0", "10"]) - ModelState is Valid +2017-11-10 19:57:22.205 +05:30 [Debug] Hosting starting +2017-11-10 19:57:22.377 +05:30 [Debug] Hosting started +2017-11-10 19:57:22.605 +05:30 [Debug] Connection id ""0HL988SK3UB87"" started. +2017-11-10 19:57:22.605 +05:30 [Debug] Connection id ""0HL988SK3UB88"" started. +2017-11-10 19:57:22.906 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-11-10 19:57:22.906 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-11-10 19:57:22.984 +05:30 [Information] Request finished in 120.7586ms 200 +2017-11-10 19:57:23.040 +05:30 [Debug] Connection id ""0HL988SK3UB87"" completed keep alive response. +2017-11-10 19:57:23.786 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-11-10 19:57:23.954 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-11-10 19:57:23.954 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-11-10 19:57:24.005 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"332eb6ef-a568-4ba2-818c-1030d6c29463"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-11-10 19:57:24.145 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-11-10 19:57:24.145 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-11-10 19:57:24.256 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-11-10 19:57:24.259 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-11-10 19:57:24.304 +05:30 [Debug] No information found on request to perform content negotiation. +2017-11-10 19:57:24.311 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-11-10 19:57:24.314 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-11-10 19:57:24.570 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 417.2268ms +2017-11-10 19:57:24.616 +05:30 [Information] Request finished in 1767.7429ms 200 application/json; charset=utf-8 +2017-11-10 19:57:24.618 +05:30 [Debug] Connection id ""0HL988SK3UB88"" completed keep alive response. +2017-11-10 19:57:27.734 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d525b71d26ee26"]) - ModelState is Valid +2017-11-10 19:57:34.220 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-11-10 19:57:34.226 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-11-10 19:57:34.228 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-11-10 19:57:34.351 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 10202.1144ms +2017-11-10 19:57:34.357 +05:30 [Information] Request finished in 10568.8872ms 200 application/json; charset=utf-8 +2017-11-10 19:57:34.358 +05:30 [Debug] Connection id ""0HL988SK3UB87"" completed keep alive response. +2017-11-10 19:57:34.386 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 75 +2017-11-10 19:57:34.388 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-11-10 19:57:34.391 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-11-10 19:57:37.518 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-11-10 19:57:38.123 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-11-10 19:57:38.123 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-11-10 19:57:38.124 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-11-10 19:57:38.177 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3784.0102ms +2017-11-10 19:57:38.178 +05:30 [Information] Request finished in 3792.2802ms 200 application/json; charset=utf-8 +2017-11-10 19:57:38.179 +05:30 [Debug] Connection id ""0HL988SK3UB88"" completed keep alive response. +2017-11-10 19:57:49.530 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-11-10 19:57:49.533 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-11-10 19:57:49.535 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-11-10 19:57:52.632 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d525b71d26ee26"]) - ModelState is Valid +2017-11-10 19:57:53.203 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-11-10 19:57:53.206 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-11-10 19:57:53.208 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-11-10 19:57:53.209 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3673.029ms +2017-11-10 19:57:53.212 +05:30 [Information] Request finished in 3703.0168ms 200 application/json; charset=utf-8 +2017-11-10 19:57:53.213 +05:30 [Debug] Connection id ""0HL988SK3UB87"" completed keep alive response. +2017-11-10 19:57:53.268 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-11-10 19:57:53.268 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-11-10 19:57:53.271 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-11-10 19:57:56.351 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d525b71d26ee26"]) - ModelState is Valid +2017-11-10 19:57:56.925 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-11-10 19:57:56.925 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-11-10 19:57:56.926 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-11-10 19:57:56.927 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3655.5914ms +2017-11-10 19:57:56.929 +05:30 [Information] Request finished in 3662.4482ms 200 application/json; charset=utf-8 +2017-11-10 19:57:56.930 +05:30 [Debug] Connection id ""0HL988SK3UB88"" completed keep alive response. +2017-11-10 19:57:56.998 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId= +2017-11-10 19:57:56.998 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-11-10 19:57:57.000 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-11-10 19:58:00.045 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", ""]) - ModelState is Valid +2017-11-10 19:58:01.894 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-11-10 19:58:01.894 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-11-10 19:58:01.895 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-11-10 19:58:01.931 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4930.4973ms +2017-11-10 19:58:01.933 +05:30 [Information] Request finished in 4936.9738ms 200 application/json; charset=utf-8 +2017-11-10 19:58:01.934 +05:30 [Debug] Connection id ""0HL988SK3UB87"" completed keep alive response. +2017-11-10 19:58:03.388 +05:30 [Debug] Connection id ""0HL988SK3UB89"" started. +2017-11-10 19:58:03.388 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-11-10 19:58:03.389 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-11-10 19:58:03.390 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-11-10 19:58:03.391 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-11-10 19:58:03.391 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-11-10 19:58:03.392 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-11-10 19:58:03.394 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-11-10 19:58:03.395 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-11-10 19:58:03.408 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-11-10 19:58:03.541 +05:30 [Debug] Connection id ""0HL988SK3UB8A"" started. +2017-11-10 19:58:03.542 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-11-10 19:58:03.543 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-11-10 19:58:03.544 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-11-10 19:58:03.891 +05:30 [Debug] Connection id ""0HL988SK3UB8B"" started. +2017-11-10 19:58:03.892 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=48 +2017-11-10 19:58:03.892 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-11-10 19:58:03.893 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-11-10 19:58:04.733 +05:30 [Debug] Connection id ""0HL988SK3UB8C"" started. +2017-11-10 19:58:04.734 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-11-10 19:58:04.734 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-11-10 19:58:04.734 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-11-10 19:58:06.603 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-11-10 19:58:06.669 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-11-10 19:58:06.673 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-11-10 19:58:06.699 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-11-10 19:58:07.547 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-11-10 19:58:07.766 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d525b71d26ee26"]) - ModelState is Valid +2017-11-10 19:58:07.843 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-11-10 19:58:07.843 +05:30 [Debug] No information found on request to perform content negotiation. +2017-11-10 19:58:07.844 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-11-10 19:58:07.845 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-11-10 19:58:07.846 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 4453.2359ms +2017-11-10 19:58:07.849 +05:30 [Information] Request finished in 4460.749ms 200 application/json; charset=utf-8 +2017-11-10 19:58:07.849 +05:30 [Debug] Connection id ""0HL988SK3UB87"" completed keep alive response. +2017-11-10 19:58:08.835 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-11-10 19:58:08.835 +05:30 [Debug] No information found on request to perform content negotiation. +2017-11-10 19:58:08.835 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-11-10 19:58:08.836 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-11-10 19:58:08.848 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 5439.0291ms +2017-11-10 19:58:08.849 +05:30 [Information] Request finished in 5460.2682ms 200 application/json; charset=utf-8 +2017-11-10 19:58:08.850 +05:30 [Debug] Connection id ""0HL988SK3UB89"" completed keep alive response. +2017-11-10 19:58:08.979 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-11-10 19:58:08.979 +05:30 [Debug] No information found on request to perform content negotiation. +2017-11-10 19:58:08.980 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-11-10 19:58:08.980 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-11-10 19:58:08.984 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 5591.5635ms +2017-11-10 19:58:08.986 +05:30 [Information] Request finished in 5599.525ms 200 application/json; charset=utf-8 +2017-11-10 19:58:08.986 +05:30 [Debug] Connection id ""0HL988SK3UB88"" completed keep alive response. +2017-11-10 19:58:09.351 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-11-10 19:58:09.351 +05:30 [Debug] No information found on request to perform content negotiation. +2017-11-10 19:58:09.351 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-11-10 19:58:09.352 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-11-10 19:58:09.353 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 5808.1955ms +2017-11-10 19:58:09.355 +05:30 [Information] Request finished in 5813.3467ms 200 application/json; charset=utf-8 +2017-11-10 19:58:09.355 +05:30 [Debug] Connection id ""0HL988SK3UB8A"" completed keep alive response. +2017-11-10 19:58:09.902 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-11-10 19:58:09.902 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-11-10 19:58:09.903 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-11-10 19:58:09.904 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 5169.4513ms +2017-11-10 19:58:09.905 +05:30 [Information] Request finished in 5172.3611ms 200 application/json; charset=utf-8 +2017-11-10 19:58:09.906 +05:30 [Debug] Connection id ""0HL988SK3UB8C"" completed keep alive response. +2017-11-10 19:58:09.921 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 59 +2017-11-10 19:58:09.922 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-11-10 19:58:09.923 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-11-10 19:58:11.637 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-11-10 19:58:11.638 +05:30 [Debug] No information found on request to perform content negotiation. +2017-11-10 19:58:11.638 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-11-10 19:58:11.639 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-11-10 19:58:11.686 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 7791.8557ms +2017-11-10 19:58:11.689 +05:30 [Information] Request finished in 7797.1593ms 200 application/json; charset=utf-8 +2017-11-10 19:58:11.690 +05:30 [Debug] Connection id ""0HL988SK3UB8B"" completed keep alive response. +2017-11-10 19:58:12.968 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["202.83.19.158", "Chrome on Windows NT 6.3", "48"]) - ModelState is Valid +2017-11-10 19:58:15.391 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-11-10 19:58:15.391 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-11-10 19:58:15.391 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-11-10 19:58:15.391 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 5472.4426ms +2017-11-10 19:58:15.391 +05:30 [Information] Request finished in 5478.25ms 200 application/json; charset=utf-8 +2017-11-10 19:58:15.391 +05:30 [Debug] Connection id ""0HL988SK3UB87"" completed keep alive response. +2017-11-10 19:59:13.284 +05:30 [Debug] Connection id ""0HL988SK3UB89"" received FIN. +2017-11-10 19:59:13.284 +05:30 [Debug] Connection id ""0HL988SK3UB8A"" received FIN. +2017-11-10 19:59:13.284 +05:30 [Debug] Connection id ""0HL988SK3UB8C"" received FIN. +2017-11-10 19:59:13.284 +05:30 [Debug] Connection id ""0HL988SK3UB88"" received FIN. +2017-11-10 19:59:13.284 +05:30 [Debug] Connection id ""0HL988SK3UB8A"" disconnecting. +2017-11-10 19:59:13.284 +05:30 [Debug] Connection id ""0HL988SK3UB8B"" received FIN. +2017-11-10 19:59:13.284 +05:30 [Debug] Connection id ""0HL988SK3UB8C"" disconnecting. +2017-11-10 19:59:13.284 +05:30 [Debug] Connection id ""0HL988SK3UB8A"" sending FIN. +2017-11-10 19:59:13.284 +05:30 [Debug] Connection id ""0HL988SK3UB8B"" disconnecting. +2017-11-10 19:59:13.284 +05:30 [Debug] Connection id ""0HL988SK3UB89"" disconnecting. +2017-11-10 19:59:13.284 +05:30 [Debug] Connection id ""0HL988SK3UB8B"" sending FIN. +2017-11-10 19:59:13.284 +05:30 [Debug] Connection id ""0HL988SK3UB88"" disconnecting. +2017-11-10 19:59:13.284 +05:30 [Debug] Connection id ""0HL988SK3UB8C"" sending FIN. +2017-11-10 19:59:13.284 +05:30 [Debug] Connection id ""0HL988SK3UB89"" sending FIN. +2017-11-10 19:59:13.284 +05:30 [Debug] Connection id ""0HL988SK3UB88"" sending FIN. +2017-11-10 19:59:13.299 +05:30 [Debug] Connection id ""0HL988SK3UB88"" sent FIN with status "0". +2017-11-10 19:59:13.299 +05:30 [Debug] Connection id ""0HL988SK3UB8C"" sent FIN with status "0". +2017-11-10 19:59:13.299 +05:30 [Debug] Connection id ""0HL988SK3UB88"" stopped. +2017-11-10 19:59:13.299 +05:30 [Debug] Connection id ""0HL988SK3UB8C"" stopped. +2017-11-10 19:59:13.299 +05:30 [Debug] Connection id ""0HL988SK3UB89"" sent FIN with status "0". +2017-11-10 19:59:13.299 +05:30 [Debug] Connection id ""0HL988SK3UB8A"" sent FIN with status "0". +2017-11-10 19:59:13.299 +05:30 [Debug] Connection id ""0HL988SK3UB89"" stopped. +2017-11-10 19:59:13.299 +05:30 [Debug] Connection id ""0HL988SK3UB8A"" stopped. +2017-11-10 19:59:13.299 +05:30 [Debug] Connection id ""0HL988SK3UB8B"" sent FIN with status "0". +2017-11-10 19:59:13.299 +05:30 [Debug] Connection id ""0HL988SK3UB8B"" stopped. +2017-11-10 20:01:03.292 +05:30 [Debug] Connection id ""0HL988SK3UB87"" received FIN. +2017-11-10 20:01:03.292 +05:30 [Debug] Connection id ""0HL988SK3UB87"" disconnecting. +2017-11-10 20:01:03.292 +05:30 [Debug] Connection id ""0HL988SK3UB87"" sending FIN. +2017-11-10 20:01:03.292 +05:30 [Debug] Connection id ""0HL988SK3UB87"" sent FIN with status "0". +2017-11-10 20:01:03.292 +05:30 [Debug] Connection id ""0HL988SK3UB87"" stopped. +2017-11-10 20:01:10.911 +05:30 [Debug] Connection id ""0HL988SK3UB8D"" started. +2017-11-10 20:01:10.913 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Facebook/GetTopFeeds?profileId=1155481037833115&userId=48&skip=0&count=10 +2017-11-10 20:01:10.914 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Facebook/GetTopFeeds"'. +2017-11-10 20:01:10.915 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacebookController.GetTopFeeds (Api.Socioboard)" +2017-11-10 20:01:13.951 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacebookController.GetTopFeeds (Api.Socioboard)" with arguments (["1155481037833115", "48", "0", "10"]) - ModelState is Valid diff --git a/src/Api.Socioboard/wwwroot/log/log-20171113.txt b/src/Api.Socioboard/wwwroot/log/log-20171113.txt new file mode 100644 index 000000000..ba78c8fef --- /dev/null +++ b/src/Api.Socioboard/wwwroot/log/log-20171113.txt @@ -0,0 +1,1670 @@ +2017-11-13 10:27:05.813 +05:30 [Debug] Hosting starting +2017-11-13 10:27:06.223 +05:30 [Debug] Hosting started +2017-11-13 10:27:06.263 +05:30 [Debug] Connection id ""0HL9AABUFCAI5"" started. +2017-11-13 10:27:06.271 +05:30 [Debug] Connection id ""0HL9AABUFCAI6"" started. +2017-11-13 10:27:06.764 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-11-13 10:27:06.847 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-11-13 10:27:06.945 +05:30 [Information] Request finished in 236.9675ms 200 +2017-11-13 10:27:07.029 +05:30 [Debug] Connection id ""0HL9AABUFCAI5"" completed keep alive response. +2017-11-13 10:27:08.857 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-11-13 10:27:08.914 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"07aadfe8-a649-4455-889d-0aed4d886c41"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-11-13 10:27:09.112 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-11-13 10:27:09.284 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-11-13 10:27:09.289 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-11-13 10:27:09.351 +05:30 [Debug] No information found on request to perform content negotiation. +2017-11-13 10:27:09.361 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-11-13 10:27:09.375 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-11-13 10:27:10.201 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 1067.5439ms +2017-11-13 10:27:10.308 +05:30 [Information] Request finished in 3645.15ms 200 application/json; charset=utf-8 +2017-11-13 10:27:10.310 +05:30 [Debug] Connection id ""0HL9AABUFCAI6"" completed keep alive response. +2017-11-13 10:27:10.341 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/favicon.ico +2017-11-13 10:27:10.344 +05:30 [Debug] Request did not match any routes. +2017-11-13 10:27:10.368 +05:30 [Debug] The request path "" does not match the path filter +2017-11-13 10:27:10.372 +05:30 [Information] Request finished in 31.2276ms 404 +2017-11-13 10:27:10.373 +05:30 [Debug] Connection id ""0HL9AABUFCAI5"" completed keep alive response. +2017-11-13 10:27:10.632 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-11-13 10:27:10.633 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-11-13 10:27:10.636 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-11-13 10:27:14.710 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d525b71d26ee26"]) - ModelState is Valid +2017-11-13 10:27:21.810 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-11-13 10:27:21.829 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-11-13 10:27:21.830 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-11-13 10:27:21.950 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 11311.2333ms +2017-11-13 10:27:21.955 +05:30 [Information] Request finished in 11320.7187ms 200 application/json; charset=utf-8 +2017-11-13 10:27:21.955 +05:30 [Debug] Connection id ""0HL9AABUFCAI6"" completed keep alive response. +2017-11-13 10:27:22.018 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 75 +2017-11-13 10:27:22.018 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-11-13 10:27:22.028 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-11-13 10:27:25.140 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-11-13 10:27:25.726 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-11-13 10:27:25.727 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-11-13 10:27:25.728 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-11-13 10:27:25.794 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3764.8674ms +2017-11-13 10:27:25.796 +05:30 [Information] Request finished in 3777.8606ms 200 application/json; charset=utf-8 +2017-11-13 10:27:25.796 +05:30 [Debug] Connection id ""0HL9AABUFCAI5"" completed keep alive response. +2017-11-13 10:27:43.506 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-11-13 10:27:43.507 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-11-13 10:27:43.508 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-11-13 10:27:45.624 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d525b71d26ee26"]) - ModelState is Valid +2017-11-13 10:27:46.159 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-11-13 10:27:46.160 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-11-13 10:27:46.168 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-11-13 10:27:46.172 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2659.7017ms +2017-11-13 10:27:46.175 +05:30 [Information] Request finished in 2668.4217ms 200 application/json; charset=utf-8 +2017-11-13 10:27:46.176 +05:30 [Debug] Connection id ""0HL9AABUFCAI6"" completed keep alive response. +2017-11-13 10:27:47.329 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-11-13 10:27:47.329 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-11-13 10:27:47.330 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-11-13 10:27:48.369 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-11-13 10:27:48.369 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-11-13 10:27:48.370 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-11-13 10:27:50.367 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d525b71d26ee26"]) - ModelState is Valid +2017-11-13 10:27:50.900 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-11-13 10:27:50.901 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-11-13 10:27:50.904 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-11-13 10:27:50.919 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3574.7522ms +2017-11-13 10:27:50.924 +05:30 [Information] Request finished in 3596.1131ms 200 application/json; charset=utf-8 +2017-11-13 10:27:50.925 +05:30 [Debug] Connection id ""0HL9AABUFCAI5"" completed keep alive response. +2017-11-13 10:27:51.005 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId= +2017-11-13 10:27:51.006 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-11-13 10:27:51.007 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-11-13 10:27:51.565 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d525b71d26ee26"]) - ModelState is Valid +2017-11-13 10:27:52.103 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-11-13 10:27:52.103 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-11-13 10:27:52.105 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-11-13 10:27:52.110 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3734.7463ms +2017-11-13 10:27:52.112 +05:30 [Information] Request finished in 3744.0964ms 200 application/json; charset=utf-8 +2017-11-13 10:27:52.113 +05:30 [Debug] Connection id ""0HL9AABUFCAI6"" completed keep alive response. +2017-11-13 10:27:52.507 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-11-13 10:27:52.509 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-11-13 10:27:52.511 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-11-13 10:27:54.055 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", ""]) - ModelState is Valid +2017-11-13 10:27:54.631 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d525b71d26ee26"]) - ModelState is Valid +2017-11-13 10:27:55.164 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-11-13 10:27:55.164 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-11-13 10:27:55.165 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-11-13 10:27:55.166 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2652.6232ms +2017-11-13 10:27:55.167 +05:30 [Information] Request finished in 2669.1423ms 200 application/json; charset=utf-8 +2017-11-13 10:27:55.168 +05:30 [Debug] Connection id ""0HL9AABUFCAI6"" completed keep alive response. +2017-11-13 10:27:55.184 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId= +2017-11-13 10:27:55.185 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-11-13 10:27:55.186 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-11-13 10:27:57.313 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", ""]) - ModelState is Valid +2017-11-13 10:27:57.547 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-11-13 10:27:57.547 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-11-13 10:27:57.548 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-11-13 10:27:57.638 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 6629.7573ms +2017-11-13 10:27:57.643 +05:30 [Information] Request finished in 6636.2962ms 200 application/json; charset=utf-8 +2017-11-13 10:27:57.643 +05:30 [Debug] Connection id ""0HL9AABUFCAI5"" completed keep alive response. +2017-11-13 10:27:59.026 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-11-13 10:27:59.027 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-11-13 10:27:59.033 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-11-13 10:27:59.036 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 3837.6926ms +2017-11-13 10:27:59.041 +05:30 [Information] Request finished in 3864.2657ms 200 application/json; charset=utf-8 +2017-11-13 10:27:59.041 +05:30 [Debug] Connection id ""0HL9AABUFCAI6"" completed keep alive response. +2017-11-13 10:28:02.713 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-11-13 10:28:02.713 +05:30 [Debug] Connection id ""0HL9AABUFCAI7"" started. +2017-11-13 10:28:02.713 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-11-13 10:28:02.714 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-11-13 10:28:02.714 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-11-13 10:28:02.715 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-11-13 10:28:02.716 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-11-13 10:28:02.742 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-11-13 10:28:02.742 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-11-13 10:28:02.745 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-11-13 10:28:02.849 +05:30 [Debug] Connection id ""0HL9AABUFCAI8"" started. +2017-11-13 10:28:02.853 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-11-13 10:28:02.853 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-11-13 10:28:02.855 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-11-13 10:28:03.588 +05:30 [Debug] Connection id ""0HL9AABUFCAI9"" started. +2017-11-13 10:28:03.599 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=48 +2017-11-13 10:28:03.599 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-11-13 10:28:03.602 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-11-13 10:28:04.652 +05:30 [Debug] Connection id ""0HL9AABUFCAIA"" started. +2017-11-13 10:28:04.657 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-11-13 10:28:04.657 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-11-13 10:28:04.658 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-11-13 10:28:07.908 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-11-13 10:28:07.935 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-11-13 10:28:07.965 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-11-13 10:28:07.968 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-11-13 10:28:07.992 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-11-13 10:28:08.593 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-11-13 10:28:08.594 +05:30 [Debug] No information found on request to perform content negotiation. +2017-11-13 10:28:08.594 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-11-13 10:28:08.595 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-11-13 10:28:08.606 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 5890.9022ms +2017-11-13 10:28:08.608 +05:30 [Information] Request finished in 5896.7084ms 200 application/json; charset=utf-8 +2017-11-13 10:28:08.608 +05:30 [Debug] Connection id ""0HL9AABUFCAI5"" completed keep alive response. +2017-11-13 10:28:08.840 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d525b71d26ee26"]) - ModelState is Valid +2017-11-13 10:28:09.042 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-11-13 10:28:09.042 +05:30 [Debug] No information found on request to perform content negotiation. +2017-11-13 10:28:09.043 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-11-13 10:28:09.043 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-11-13 10:28:09.045 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 6303.1101ms +2017-11-13 10:28:09.048 +05:30 [Information] Request finished in 6335.8508ms 200 application/json; charset=utf-8 +2017-11-13 10:28:09.048 +05:30 [Debug] Connection id ""0HL9AABUFCAI6"" completed keep alive response. +2017-11-13 10:28:09.425 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-11-13 10:28:09.425 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-11-13 10:28:09.426 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-11-13 10:28:09.427 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 4768.4813ms +2017-11-13 10:28:09.429 +05:30 [Information] Request finished in 4774.7114ms 200 application/json; charset=utf-8 +2017-11-13 10:28:09.430 +05:30 [Debug] Connection id ""0HL9AABUFCAIA"" completed keep alive response. +2017-11-13 10:28:09.448 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 59 +2017-11-13 10:28:09.449 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-11-13 10:28:09.450 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-11-13 10:28:10.367 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-11-13 10:28:10.367 +05:30 [Debug] No information found on request to perform content negotiation. +2017-11-13 10:28:10.368 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-11-13 10:28:10.369 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-11-13 10:28:10.380 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 7633.8156ms +2017-11-13 10:28:10.381 +05:30 [Information] Request finished in 7666.5252ms 200 application/json; charset=utf-8 +2017-11-13 10:28:10.382 +05:30 [Debug] Connection id ""0HL9AABUFCAI7"" completed keep alive response. +2017-11-13 10:28:10.920 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-11-13 10:28:10.920 +05:30 [Debug] No information found on request to perform content negotiation. +2017-11-13 10:28:10.920 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-11-13 10:28:10.921 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-11-13 10:28:10.922 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 8066.0234ms +2017-11-13 10:28:10.924 +05:30 [Information] Request finished in 8072.6345ms 200 application/json; charset=utf-8 +2017-11-13 10:28:10.924 +05:30 [Debug] Connection id ""0HL9AABUFCAI8"" completed keep alive response. +2017-11-13 10:28:11.568 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["202.83.19.158", "Chrome on Windows NT 6.3", "48"]) - ModelState is Valid +2017-11-13 10:28:11.917 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-11-13 10:28:11.918 +05:30 [Debug] No information found on request to perform content negotiation. +2017-11-13 10:28:11.918 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-11-13 10:28:11.919 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-11-13 10:28:11.976 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 8373.8553ms +2017-11-13 10:28:11.978 +05:30 [Information] Request finished in 8386.6884ms 200 application/json; charset=utf-8 +2017-11-13 10:28:11.979 +05:30 [Debug] Connection id ""0HL9AABUFCAI9"" completed keep alive response. +2017-11-13 10:28:14.036 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-11-13 10:28:14.037 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-11-13 10:28:14.039 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-11-13 10:28:14.041 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 4588.155ms +2017-11-13 10:28:14.044 +05:30 [Information] Request finished in 4594.9154ms 200 application/json; charset=utf-8 +2017-11-13 10:28:14.044 +05:30 [Debug] Connection id ""0HL9AABUFCAI5"" completed keep alive response. +2017-11-13 10:28:18.556 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Facebook/GetTopFeeds?profileId=127471161024815&userId=48&skip=0&count=10 +2017-11-13 10:28:18.557 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Facebook/GetTopFeeds"'. +2017-11-13 10:28:18.561 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacebookController.GetTopFeeds (Api.Socioboard)" +2017-11-13 10:28:21.617 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacebookController.GetTopFeeds (Api.Socioboard)" with arguments (["127471161024815", "48", "0", "10"]) - ModelState is Valid +2017-11-13 10:28:55.053 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacebookController.GetTopFeeds (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-11-13 10:28:55.054 +05:30 [Debug] No information found on request to perform content negotiation. +2017-11-13 10:28:55.055 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-11-13 10:28:55.056 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-11-13 10:28:55.094 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacebookController.GetTopFeeds (Api.Socioboard)" in 36526.6844ms +2017-11-13 10:28:55.097 +05:30 [Information] Request finished in 36540.5556ms 200 application/json; charset=utf-8 +2017-11-13 10:28:55.097 +05:30 [Debug] Connection id ""0HL9AABUFCAI6"" completed keep alive response. +2017-11-13 10:29:29.685 +05:30 [Debug] Connection id ""0HL9AABUFCAI7"" received FIN. +2017-11-13 10:29:29.685 +05:30 [Debug] Connection id ""0HL9AABUFCAIA"" received FIN. +2017-11-13 10:29:29.686 +05:30 [Debug] Connection id ""0HL9AABUFCAI8"" received FIN. +2017-11-13 10:29:29.686 +05:30 [Debug] Connection id ""0HL9AABUFCAI5"" received FIN. +2017-11-13 10:29:29.687 +05:30 [Debug] Connection id ""0HL9AABUFCAI7"" disconnecting. +2017-11-13 10:29:29.686 +05:30 [Debug] Connection id ""0HL9AABUFCAI9"" received FIN. +2017-11-13 10:29:29.687 +05:30 [Debug] Connection id ""0HL9AABUFCAI5"" disconnecting. +2017-11-13 10:29:29.687 +05:30 [Debug] Connection id ""0HL9AABUFCAI9"" disconnecting. +2017-11-13 10:29:29.688 +05:30 [Debug] Connection id ""0HL9AABUFCAI5"" sending FIN. +2017-11-13 10:29:29.688 +05:30 [Debug] Connection id ""0HL9AABUFCAI8"" disconnecting. +2017-11-13 10:29:29.689 +05:30 [Debug] Connection id ""0HL9AABUFCAIA"" disconnecting. +2017-11-13 10:29:29.689 +05:30 [Debug] Connection id ""0HL9AABUFCAI7"" sending FIN. +2017-11-13 10:29:29.690 +05:30 [Debug] Connection id ""0HL9AABUFCAI8"" sending FIN. +2017-11-13 10:29:29.690 +05:30 [Debug] Connection id ""0HL9AABUFCAI9"" sending FIN. +2017-11-13 10:29:29.691 +05:30 [Debug] Connection id ""0HL9AABUFCAIA"" sending FIN. +2017-11-13 10:29:29.690 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Facebook/GetTopFeeds?profileId=133524017182208&userId=48&skip=0&count=10 +2017-11-13 10:29:29.691 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Facebook/GetTopFeeds"'. +2017-11-13 10:29:29.692 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacebookController.GetTopFeeds (Api.Socioboard)" +2017-11-13 10:29:29.699 +05:30 [Debug] Connection id ""0HL9AABUFCAIA"" sent FIN with status "0". +2017-11-13 10:29:29.699 +05:30 [Debug] Connection id ""0HL9AABUFCAI9"" sent FIN with status "0". +2017-11-13 10:29:29.703 +05:30 [Debug] Connection id ""0HL9AABUFCAI9"" stopped. +2017-11-13 10:29:29.703 +05:30 [Debug] Connection id ""0HL9AABUFCAIA"" stopped. +2017-11-13 10:29:29.703 +05:30 [Debug] Connection id ""0HL9AABUFCAI7"" sent FIN with status "0". +2017-11-13 10:29:29.703 +05:30 [Debug] Connection id ""0HL9AABUFCAI8"" sent FIN with status "0". +2017-11-13 10:29:29.704 +05:30 [Debug] Connection id ""0HL9AABUFCAI8"" stopped. +2017-11-13 10:29:29.703 +05:30 [Debug] Connection id ""0HL9AABUFCAI7"" stopped. +2017-11-13 10:29:29.704 +05:30 [Debug] Connection id ""0HL9AABUFCAI5"" sent FIN with status "0". +2017-11-13 10:29:29.704 +05:30 [Debug] Connection id ""0HL9AABUFCAI5"" stopped. +2017-11-13 10:29:32.722 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacebookController.GetTopFeeds (Api.Socioboard)" with arguments (["133524017182208", "48", "0", "10"]) - ModelState is Valid +2017-11-13 10:29:33.087 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacebookController.GetTopFeeds (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-11-13 10:29:33.087 +05:30 [Debug] No information found on request to perform content negotiation. +2017-11-13 10:29:33.087 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-11-13 10:29:33.088 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-11-13 10:29:33.092 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacebookController.GetTopFeeds (Api.Socioboard)" in 3396.9423ms +2017-11-13 10:29:33.096 +05:30 [Information] Request finished in 3406.3179ms 200 application/json; charset=utf-8 +2017-11-13 10:29:33.097 +05:30 [Debug] Connection id ""0HL9AABUFCAI6"" completed keep alive response. +2017-11-13 10:30:46.738 +05:30 [Debug] Connection id ""0HL9AABUFCAI6"" received FIN. +2017-11-13 10:30:46.738 +05:30 [Debug] Connection id ""0HL9AABUFCAI6"" disconnecting. +2017-11-13 10:30:46.738 +05:30 [Debug] Connection id ""0HL9AABUFCAI6"" sending FIN. +2017-11-13 10:30:46.739 +05:30 [Debug] Connection id ""0HL9AABUFCAI6"" sent FIN with status "0". +2017-11-13 10:30:46.739 +05:30 [Debug] Connection id ""0HL9AABUFCAI6"" stopped. +2017-11-13 11:23:03.183 +05:30 [Debug] Hosting starting +2017-11-13 11:23:03.540 +05:30 [Debug] Hosting started +2017-11-13 11:23:03.677 +05:30 [Debug] Connection id ""0HL9ABB7259LP"" started. +2017-11-13 11:23:03.682 +05:30 [Debug] Connection id ""0HL9ABB7259LQ"" started. +2017-11-13 11:23:03.875 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-11-13 11:23:03.875 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-11-13 11:23:03.926 +05:30 [Information] Request finished in 88.3995ms 200 +2017-11-13 11:23:03.957 +05:30 [Debug] Connection id ""0HL9ABB7259LQ"" completed keep alive response. +2017-11-13 11:23:04.862 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-11-13 11:23:04.916 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"13594324-aac1-44c9-a42c-abe0250061c6"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-11-13 11:23:05.126 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-11-13 11:23:05.320 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-11-13 11:23:05.323 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-11-13 11:23:05.376 +05:30 [Debug] No information found on request to perform content negotiation. +2017-11-13 11:23:05.384 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-11-13 11:23:05.389 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-11-13 11:23:05.727 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 590.5825ms +2017-11-13 11:23:05.850 +05:30 [Information] Request finished in 2002.8143ms 200 application/json; charset=utf-8 +2017-11-13 11:23:05.854 +05:30 [Debug] Connection id ""0HL9ABB7259LP"" completed keep alive response. +2017-11-13 11:23:06.260 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-11-13 11:23:06.262 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-11-13 11:23:06.275 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-11-13 11:23:09.950 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d525b71d26ee26"]) - ModelState is Valid +2017-11-13 11:23:17.215 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-11-13 11:23:17.219 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-11-13 11:23:17.221 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-11-13 11:23:17.348 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 11071.6869ms +2017-11-13 11:23:17.350 +05:30 [Information] Request finished in 11091.9384ms 200 application/json; charset=utf-8 +2017-11-13 11:23:17.350 +05:30 [Debug] Connection id ""0HL9ABB7259LQ"" completed keep alive response. +2017-11-13 11:23:17.376 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 75 +2017-11-13 11:23:17.377 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-11-13 11:23:17.378 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-11-13 11:23:20.496 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-11-13 11:23:21.144 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-11-13 11:23:21.145 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-11-13 11:23:21.146 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-11-13 11:23:21.245 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3864.9375ms +2017-11-13 11:23:21.247 +05:30 [Information] Request finished in 3870.581ms 200 application/json; charset=utf-8 +2017-11-13 11:23:21.248 +05:30 [Debug] Connection id ""0HL9ABB7259LP"" completed keep alive response. +2017-11-13 11:23:33.376 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-11-13 11:23:33.376 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-11-13 11:23:33.379 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-11-13 11:23:36.461 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d525b71d26ee26"]) - ModelState is Valid +2017-11-13 11:23:37.054 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-11-13 11:23:37.055 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-11-13 11:23:37.055 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-11-13 11:23:37.056 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3675.8424ms +2017-11-13 11:23:37.058 +05:30 [Information] Request finished in 3682.111ms 200 application/json; charset=utf-8 +2017-11-13 11:23:37.058 +05:30 [Debug] Connection id ""0HL9ABB7259LQ"" completed keep alive response. +2017-11-13 11:23:37.099 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-11-13 11:23:37.102 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-11-13 11:23:37.102 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-11-13 11:23:40.165 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d525b71d26ee26"]) - ModelState is Valid +2017-11-13 11:23:40.760 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-11-13 11:23:40.760 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-11-13 11:23:40.761 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-11-13 11:23:40.762 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3657.7784ms +2017-11-13 11:23:40.766 +05:30 [Information] Request finished in 3665.6861ms 200 application/json; charset=utf-8 +2017-11-13 11:23:40.766 +05:30 [Debug] Connection id ""0HL9ABB7259LP"" completed keep alive response. +2017-11-13 11:23:40.828 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId= +2017-11-13 11:23:40.829 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-11-13 11:23:40.830 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-11-13 11:23:42.944 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", ""]) - ModelState is Valid +2017-11-13 11:23:44.908 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-11-13 11:23:44.909 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-11-13 11:23:44.910 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-11-13 11:23:44.946 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4115.4267ms +2017-11-13 11:23:44.948 +05:30 [Information] Request finished in 4119.7929ms 200 application/json; charset=utf-8 +2017-11-13 11:23:44.948 +05:30 [Debug] Connection id ""0HL9ABB7259LQ"" completed keep alive response. +2017-11-13 11:23:46.835 +05:30 [Debug] Connection id ""0HL9ABB7259LR"" started. +2017-11-13 11:23:46.838 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-11-13 11:23:46.838 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-11-13 11:23:46.839 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-11-13 11:23:46.845 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-11-13 11:23:46.846 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-11-13 11:23:46.847 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-11-13 11:23:46.859 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-11-13 11:23:46.860 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-11-13 11:23:46.867 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-11-13 11:23:46.937 +05:30 [Debug] Connection id ""0HL9ABB7259LS"" started. +2017-11-13 11:23:46.938 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-11-13 11:23:46.938 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-11-13 11:23:46.940 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-11-13 11:23:47.376 +05:30 [Debug] Connection id ""0HL9ABB7259LT"" started. +2017-11-13 11:23:47.867 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=48 +2017-11-13 11:23:47.868 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-11-13 11:23:47.870 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-11-13 11:23:48.211 +05:30 [Debug] Connection id ""0HL9ABB7259LU"" started. +2017-11-13 11:23:48.856 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-11-13 11:23:48.856 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-11-13 11:23:48.857 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-11-13 11:23:50.964 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-11-13 11:23:50.991 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-11-13 11:23:50.994 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-11-13 11:23:51.018 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-11-13 11:23:51.884 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-11-13 11:23:51.920 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d525b71d26ee26"]) - ModelState is Valid +2017-11-13 11:23:52.245 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-11-13 11:23:52.245 +05:30 [Debug] No information found on request to perform content negotiation. +2017-11-13 11:23:52.246 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-11-13 11:23:52.247 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-11-13 11:23:52.249 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 5400.9322ms +2017-11-13 11:23:52.251 +05:30 [Information] Request finished in 5437.3014ms 200 application/json; charset=utf-8 +2017-11-13 11:23:52.252 +05:30 [Debug] Connection id ""0HL9ABB7259LQ"" completed keep alive response. +2017-11-13 11:23:53.005 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-11-13 11:23:53.006 +05:30 [Debug] No information found on request to perform content negotiation. +2017-11-13 11:23:53.006 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-11-13 11:23:53.007 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-11-13 11:23:53.011 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 6143.7063ms +2017-11-13 11:23:53.013 +05:30 [Information] Request finished in 6177.0419ms 200 application/json; charset=utf-8 +2017-11-13 11:23:53.014 +05:30 [Debug] Connection id ""0HL9ABB7259LR"" completed keep alive response. +2017-11-13 11:23:53.284 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-11-13 11:23:53.285 +05:30 [Debug] No information found on request to perform content negotiation. +2017-11-13 11:23:53.285 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-11-13 11:23:53.287 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-11-13 11:23:53.294 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 6453.8197ms +2017-11-13 11:23:53.296 +05:30 [Information] Request finished in 6482.2352ms 200 application/json; charset=utf-8 +2017-11-13 11:23:53.297 +05:30 [Debug] Connection id ""0HL9ABB7259LP"" completed keep alive response. +2017-11-13 11:23:53.741 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-11-13 11:23:53.741 +05:30 [Debug] No information found on request to perform content negotiation. +2017-11-13 11:23:53.741 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-11-13 11:23:53.742 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-11-13 11:23:53.746 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 6802.4868ms +2017-11-13 11:23:53.756 +05:30 [Information] Request finished in 6810.8809ms 200 application/json; charset=utf-8 +2017-11-13 11:23:53.757 +05:30 [Debug] Connection id ""0HL9ABB7259LS"" completed keep alive response. +2017-11-13 11:23:53.879 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-11-13 11:23:53.879 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-11-13 11:23:53.880 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-11-13 11:23:53.881 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 5024.1687ms +2017-11-13 11:23:53.884 +05:30 [Information] Request finished in 5028.2139ms 200 application/json; charset=utf-8 +2017-11-13 11:23:53.885 +05:30 [Debug] Connection id ""0HL9ABB7259LU"" completed keep alive response. +2017-11-13 11:23:53.897 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 59 +2017-11-13 11:23:53.898 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-11-13 11:23:53.900 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-11-13 11:23:55.981 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["202.83.19.158", "Chrome on Windows NT 6.3", "48"]) - ModelState is Valid +2017-11-13 11:23:56.078 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-11-13 11:23:56.078 +05:30 [Debug] No information found on request to perform content negotiation. +2017-11-13 11:23:56.078 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-11-13 11:23:56.079 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-11-13 11:23:56.129 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 8258.7318ms +2017-11-13 11:23:56.151 +05:30 [Information] Request finished in 8285.6063ms 200 application/json; charset=utf-8 +2017-11-13 11:23:56.152 +05:30 [Debug] Connection id ""0HL9ABB7259LT"" completed keep alive response. +2017-11-13 11:23:58.355 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-11-13 11:23:58.355 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-11-13 11:23:58.357 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-11-13 11:23:58.359 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 4457.2921ms +2017-11-13 11:23:58.361 +05:30 [Information] Request finished in 4463.7878ms 200 application/json; charset=utf-8 +2017-11-13 11:23:58.362 +05:30 [Debug] Connection id ""0HL9ABB7259LQ"" completed keep alive response. +2017-11-13 11:24:54.554 +05:30 [Debug] Connection id ""0HL9ABB7259LP"" received FIN. +2017-11-13 11:24:54.554 +05:30 [Debug] Connection id ""0HL9ABB7259LR"" received FIN. +2017-11-13 11:24:54.555 +05:30 [Debug] Connection id ""0HL9ABB7259LS"" received FIN. +2017-11-13 11:24:54.555 +05:30 [Debug] Connection id ""0HL9ABB7259LU"" received FIN. +2017-11-13 11:24:54.555 +05:30 [Debug] Connection id ""0HL9ABB7259LP"" disconnecting. +2017-11-13 11:24:54.555 +05:30 [Debug] Connection id ""0HL9ABB7259LS"" disconnecting. +2017-11-13 11:24:54.556 +05:30 [Debug] Connection id ""0HL9ABB7259LR"" disconnecting. +2017-11-13 11:24:54.577 +05:30 [Debug] Connection id ""0HL9ABB7259LU"" disconnecting. +2017-11-13 11:24:54.577 +05:30 [Debug] Connection id ""0HL9ABB7259LP"" sending FIN. +2017-11-13 11:24:54.577 +05:30 [Debug] Connection id ""0HL9ABB7259LR"" sending FIN. +2017-11-13 11:24:54.579 +05:30 [Debug] Connection id ""0HL9ABB7259LS"" sending FIN. +2017-11-13 11:24:54.579 +05:30 [Debug] Connection id ""0HL9ABB7259LU"" sending FIN. +2017-11-13 11:24:54.584 +05:30 [Debug] Connection id ""0HL9ABB7259LU"" sent FIN with status "0". +2017-11-13 11:24:54.584 +05:30 [Debug] Connection id ""0HL9ABB7259LR"" sent FIN with status "0". +2017-11-13 11:24:54.586 +05:30 [Debug] Connection id ""0HL9ABB7259LR"" stopped. +2017-11-13 11:24:54.586 +05:30 [Debug] Connection id ""0HL9ABB7259LU"" stopped. +2017-11-13 11:24:54.586 +05:30 [Debug] Connection id ""0HL9ABB7259LS"" sent FIN with status "0". +2017-11-13 11:24:54.586 +05:30 [Debug] Connection id ""0HL9ABB7259LS"" stopped. +2017-11-13 11:24:54.587 +05:30 [Debug] Connection id ""0HL9ABB7259LP"" sent FIN with status "0". +2017-11-13 11:24:54.587 +05:30 [Debug] Connection id ""0HL9ABB7259LP"" stopped. +2017-11-13 11:26:44.553 +05:30 [Debug] Connection id ""0HL9ABB7259LT"" received FIN. +2017-11-13 11:26:44.553 +05:30 [Debug] Connection id ""0HL9ABB7259LQ"" received FIN. +2017-11-13 11:26:44.553 +05:30 [Debug] Connection id ""0HL9ABB7259LT"" disconnecting. +2017-11-13 11:26:44.554 +05:30 [Debug] Connection id ""0HL9ABB7259LT"" sending FIN. +2017-11-13 11:26:44.554 +05:30 [Debug] Connection id ""0HL9ABB7259LQ"" disconnecting. +2017-11-13 11:26:44.554 +05:30 [Debug] Connection id ""0HL9ABB7259LT"" sent FIN with status "0". +2017-11-13 11:26:44.554 +05:30 [Debug] Connection id ""0HL9ABB7259LT"" stopped. +2017-11-13 11:26:44.555 +05:30 [Debug] Connection id ""0HL9ABB7259LQ"" sending FIN. +2017-11-13 11:26:44.555 +05:30 [Debug] Connection id ""0HL9ABB7259LQ"" sent FIN with status "0". +2017-11-13 11:26:44.555 +05:30 [Debug] Connection id ""0HL9ABB7259LQ"" stopped. +2017-11-13 12:30:33.693 +05:30 [Debug] Connection id ""0HL9ABB7259LV"" started. +2017-11-13 12:30:33.697 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-11-13 12:30:33.698 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-11-13 12:30:33.699 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-11-13 12:30:36.755 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d525b71d26ee26"]) - ModelState is Valid +2017-11-13 12:30:38.964 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-11-13 12:30:38.965 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-11-13 12:30:38.966 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-11-13 12:30:38.968 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 5267.9544ms +2017-11-13 12:30:38.971 +05:30 [Information] Request finished in 5273.8238ms 200 application/json; charset=utf-8 +2017-11-13 12:30:38.971 +05:30 [Debug] Connection id ""0HL9ABB7259LV"" completed keep alive response. +2017-11-13 12:30:38.975 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 75 +2017-11-13 12:30:38.976 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-11-13 12:30:38.977 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-11-13 12:30:41.101 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-11-13 12:30:41.682 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-11-13 12:30:41.682 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-11-13 12:30:41.684 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-11-13 12:30:41.686 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 2708.4061ms +2017-11-13 12:30:41.691 +05:30 [Information] Request finished in 2715.2772ms 200 application/json; charset=utf-8 +2017-11-13 12:30:41.692 +05:30 [Debug] Connection id ""0HL9ABB7259LV"" completed keep alive response. +2017-11-13 12:30:41.763 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-11-13 12:30:41.764 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-11-13 12:30:41.765 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-11-13 12:30:44.808 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d525b71d26ee26"]) - ModelState is Valid +2017-11-13 12:30:45.390 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-11-13 12:30:45.390 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-11-13 12:30:45.392 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-11-13 12:30:45.393 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3627.7811ms +2017-11-13 12:30:45.398 +05:30 [Information] Request finished in 3632.8104ms 200 application/json; charset=utf-8 +2017-11-13 12:30:45.398 +05:30 [Debug] Connection id ""0HL9ABB7259LV"" completed keep alive response. +2017-11-13 12:30:45.406 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId= +2017-11-13 12:30:45.407 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-11-13 12:30:45.408 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-11-13 12:30:48.476 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", ""]) - ModelState is Valid +2017-11-13 12:30:50.225 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-11-13 12:30:50.225 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-11-13 12:30:50.227 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-11-13 12:30:50.229 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4819.5789ms +2017-11-13 12:30:50.233 +05:30 [Information] Request finished in 4825.8289ms 200 application/json; charset=utf-8 +2017-11-13 12:30:50.234 +05:30 [Debug] Connection id ""0HL9ABB7259LV"" completed keep alive response. +2017-11-13 12:30:52.273 +05:30 [Debug] Connection id ""0HL9ABB7259M0"" started. +2017-11-13 12:30:52.273 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-11-13 12:30:52.274 +05:30 [Debug] Connection id ""0HL9ABB7259M1"" started. +2017-11-13 12:30:52.274 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-11-13 12:30:52.274 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-11-13 12:30:52.277 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-11-13 12:30:52.277 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-11-13 12:30:52.278 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-11-13 12:30:52.278 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-11-13 12:30:52.278 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-11-13 12:30:52.278 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-11-13 12:30:52.352 +05:30 [Debug] Connection id ""0HL9ABB7259M2"" started. +2017-11-13 12:30:52.354 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-11-13 12:30:52.355 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-11-13 12:30:52.355 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-11-13 12:30:52.757 +05:30 [Debug] Connection id ""0HL9ABB7259M3"" started. +2017-11-13 12:30:52.758 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=48 +2017-11-13 12:30:52.759 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-11-13 12:30:52.760 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-11-13 12:30:53.474 +05:30 [Debug] Connection id ""0HL9ABB7259M4"" started. +2017-11-13 12:30:53.478 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-11-13 12:30:53.479 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-11-13 12:30:53.479 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-11-13 12:30:54.387 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-11-13 12:30:54.982 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-11-13 12:30:54.983 +05:30 [Debug] No information found on request to perform content negotiation. +2017-11-13 12:30:54.983 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-11-13 12:30:54.984 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-11-13 12:30:54.987 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 2706.1423ms +2017-11-13 12:30:54.990 +05:30 [Information] Request finished in 2714.5367ms 200 application/json; charset=utf-8 +2017-11-13 12:30:54.990 +05:30 [Debug] Connection id ""0HL9ABB7259M0"" completed keep alive response. +2017-11-13 12:30:55.313 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-11-13 12:30:55.362 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-11-13 12:30:55.421 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-11-13 12:30:55.586 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d525b71d26ee26"]) - ModelState is Valid +2017-11-13 12:30:55.805 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-11-13 12:30:56.561 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-11-13 12:30:56.562 +05:30 [Debug] No information found on request to perform content negotiation. +2017-11-13 12:30:56.562 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-11-13 12:30:56.563 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-11-13 12:30:56.565 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 4289.3813ms +2017-11-13 12:30:56.568 +05:30 [Information] Request finished in 4294.7993ms 200 application/json; charset=utf-8 +2017-11-13 12:30:56.569 +05:30 [Debug] Connection id ""0HL9ABB7259LV"" completed keep alive response. +2017-11-13 12:30:57.753 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-11-13 12:30:57.754 +05:30 [Debug] No information found on request to perform content negotiation. +2017-11-13 12:30:57.754 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-11-13 12:30:57.755 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-11-13 12:30:57.759 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 5476.8178ms +2017-11-13 12:30:57.765 +05:30 [Information] Request finished in 5487.8172ms 200 application/json; charset=utf-8 +2017-11-13 12:30:57.765 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-11-13 12:30:57.766 +05:30 [Debug] Connection id ""0HL9ABB7259M1"" completed keep alive response. +2017-11-13 12:30:57.766 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-11-13 12:30:57.768 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-11-13 12:30:57.775 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 4290.2978ms +2017-11-13 12:30:57.779 +05:30 [Information] Request finished in 4301.2291ms 200 application/json; charset=utf-8 +2017-11-13 12:30:57.779 +05:30 [Debug] Connection id ""0HL9ABB7259M4"" completed keep alive response. +2017-11-13 12:30:57.787 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 59 +2017-11-13 12:30:57.788 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-11-13 12:30:57.788 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-11-13 12:30:58.141 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-11-13 12:30:58.141 +05:30 [Debug] No information found on request to perform content negotiation. +2017-11-13 12:30:58.141 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-11-13 12:30:58.142 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-11-13 12:30:58.144 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 5787.913ms +2017-11-13 12:30:58.146 +05:30 [Information] Request finished in 5793.6884ms 200 application/json; charset=utf-8 +2017-11-13 12:30:58.147 +05:30 [Debug] Connection id ""0HL9ABB7259M2"" completed keep alive response. +2017-11-13 12:30:59.742 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-11-13 12:30:59.742 +05:30 [Debug] No information found on request to perform content negotiation. +2017-11-13 12:30:59.743 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-11-13 12:30:59.744 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-11-13 12:30:59.745 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 6983.9168ms +2017-11-13 12:30:59.748 +05:30 [Information] Request finished in 6988.9607ms 200 application/json; charset=utf-8 +2017-11-13 12:30:59.748 +05:30 [Debug] Connection id ""0HL9ABB7259M3"" completed keep alive response. +2017-11-13 12:31:00.904 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["202.83.19.158", "Chrome on Windows NT 6.3", "48"]) - ModelState is Valid +2017-11-13 12:31:03.153 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-11-13 12:31:03.154 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-11-13 12:31:03.156 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-11-13 12:31:03.160 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 5368.5231ms +2017-11-13 12:31:03.165 +05:30 [Information] Request finished in 5377.9892ms 200 application/json; charset=utf-8 +2017-11-13 12:31:03.165 +05:30 [Debug] Connection id ""0HL9ABB7259M0"" completed keep alive response. +2017-11-13 12:31:12.422 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-11-13 12:31:12.423 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-11-13 12:31:12.424 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-11-13 12:31:15.464 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d525b71d26ee26"]) - ModelState is Valid +2017-11-13 12:31:16.065 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-11-13 12:31:16.066 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-11-13 12:31:16.067 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-11-13 12:31:16.071 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3643.6189ms +2017-11-13 12:31:16.075 +05:30 [Information] Request finished in 3652.0086ms 200 application/json; charset=utf-8 +2017-11-13 12:31:16.076 +05:30 [Debug] Connection id ""0HL9ABB7259LV"" completed keep alive response. +2017-11-13 12:31:16.081 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-11-13 12:31:16.081 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-11-13 12:31:16.082 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-11-13 12:31:19.119 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d525b71d26ee26"]) - ModelState is Valid +2017-11-13 12:31:20.261 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-11-13 12:31:20.261 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-11-13 12:31:20.263 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-11-13 12:31:20.264 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 4181.0704ms +2017-11-13 12:31:20.268 +05:30 [Information] Request finished in 4186.83ms 200 application/json; charset=utf-8 +2017-11-13 12:31:20.269 +05:30 [Debug] Connection id ""0HL9ABB7259M1"" completed keep alive response. +2017-11-13 12:31:20.276 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId=48 +2017-11-13 12:31:20.277 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-11-13 12:31:20.278 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-11-13 12:31:23.343 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", "48"]) - ModelState is Valid +2017-11-13 12:31:25.094 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-11-13 12:31:25.095 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-11-13 12:31:25.096 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-11-13 12:31:25.098 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4819.8302ms +2017-11-13 12:31:25.102 +05:30 [Information] Request finished in 4825.7617ms 200 application/json; charset=utf-8 +2017-11-13 12:31:25.102 +05:30 [Debug] Connection id ""0HL9ABB7259M4"" completed keep alive response. +2017-11-13 12:31:28.365 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-11-13 12:31:28.506 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-11-13 12:31:28.506 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-11-13 12:31:28.511 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-11-13 12:31:28.515 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-11-13 12:31:28.516 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-11-13 12:31:28.518 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-11-13 12:31:28.518 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-11-13 12:31:28.519 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-11-13 12:31:28.527 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-11-13 12:31:28.527 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-11-13 12:31:28.528 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-11-13 12:31:31.616 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-11-13 12:31:31.703 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-11-13 12:31:31.704 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-11-13 12:31:31.704 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-11-13 12:31:32.275 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-11-13 12:31:32.276 +05:30 [Debug] No information found on request to perform content negotiation. +2017-11-13 12:31:32.276 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-11-13 12:31:32.277 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-11-13 12:31:32.280 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 3770.9923ms +2017-11-13 12:31:32.283 +05:30 [Information] Request finished in 3918.5387ms 200 application/json; charset=utf-8 +2017-11-13 12:31:32.283 +05:30 [Debug] Connection id ""0HL9ABB7259M2"" completed keep alive response. +2017-11-13 12:31:32.391 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-11-13 12:31:32.391 +05:30 [Debug] No information found on request to perform content negotiation. +2017-11-13 12:31:32.391 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-11-13 12:31:32.392 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-11-13 12:31:32.394 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3873.0187ms +2017-11-13 12:31:32.396 +05:30 [Information] Request finished in 3878.985ms 200 application/json; charset=utf-8 +2017-11-13 12:31:32.396 +05:30 [Debug] Connection id ""0HL9ABB7259M0"" completed keep alive response. +2017-11-13 12:31:32.856 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-11-13 12:31:32.856 +05:30 [Debug] No information found on request to perform content negotiation. +2017-11-13 12:31:32.857 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-11-13 12:31:32.858 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-11-13 12:31:32.860 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 4341.8915ms +2017-11-13 12:31:32.864 +05:30 [Information] Request finished in 4497.4659ms 200 application/json; charset=utf-8 +2017-11-13 12:31:32.864 +05:30 [Debug] Connection id ""0HL9ABB7259M3"" completed keep alive response. +2017-11-13 12:31:32.940 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-11-13 12:31:32.941 +05:30 [Debug] No information found on request to perform content negotiation. +2017-11-13 12:31:32.941 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-11-13 12:31:32.942 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-11-13 12:31:32.943 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 4414.1407ms +2017-11-13 12:31:32.946 +05:30 [Information] Request finished in 4423.201ms 200 application/json; charset=utf-8 +2017-11-13 12:31:32.946 +05:30 [Debug] Connection id ""0HL9ABB7259LV"" completed keep alive response. +2017-11-13 12:32:36.346 +05:30 [Debug] Connection id ""0HL9ABB7259M4"" received FIN. +2017-11-13 12:32:36.346 +05:30 [Debug] Connection id ""0HL9ABB7259M1"" received FIN. +2017-11-13 12:32:36.346 +05:30 [Debug] Connection id ""0HL9ABB7259M2"" received FIN. +2017-11-13 12:32:36.346 +05:30 [Debug] Connection id ""0HL9ABB7259M3"" received FIN. +2017-11-13 12:32:36.346 +05:30 [Debug] Connection id ""0HL9ABB7259M0"" received FIN. +2017-11-13 12:32:36.346 +05:30 [Debug] Connection id ""0HL9ABB7259LV"" received FIN. +2017-11-13 12:32:36.347 +05:30 [Debug] Connection id ""0HL9ABB7259M4"" disconnecting. +2017-11-13 12:32:36.347 +05:30 [Debug] Connection id ""0HL9ABB7259M4"" sending FIN. +2017-11-13 12:32:36.347 +05:30 [Debug] Connection id ""0HL9ABB7259M1"" disconnecting. +2017-11-13 12:32:36.347 +05:30 [Debug] Connection id ""0HL9ABB7259M4"" sent FIN with status "0". +2017-11-13 12:32:36.347 +05:30 [Debug] Connection id ""0HL9ABB7259M5"" started. +2017-11-13 12:32:36.347 +05:30 [Debug] Connection id ""0HL9ABB7259M4"" stopped. +2017-11-13 12:32:36.348 +05:30 [Debug] Connection id ""0HL9ABB7259M1"" sending FIN. +2017-11-13 12:32:36.348 +05:30 [Debug] Connection id ""0HL9ABB7259M1"" sent FIN with status "0". +2017-11-13 12:32:36.348 +05:30 [Debug] Connection id ""0HL9ABB7259M1"" stopped. +2017-11-13 12:32:36.347 +05:30 [Debug] Connection id ""0HL9ABB7259M2"" disconnecting. +2017-11-13 12:32:36.356 +05:30 [Debug] Connection id ""0HL9ABB7259M0"" disconnecting. +2017-11-13 12:32:36.356 +05:30 [Debug] Connection id ""0HL9ABB7259M2"" sending FIN. +2017-11-13 12:32:36.356 +05:30 [Debug] Connection id ""0HL9ABB7259LV"" disconnecting. +2017-11-13 12:32:36.357 +05:30 [Debug] Connection id ""0HL9ABB7259M0"" sending FIN. +2017-11-13 12:32:36.357 +05:30 [Debug] Connection id ""0HL9ABB7259LV"" sending FIN. +2017-11-13 12:32:36.357 +05:30 [Debug] Connection id ""0HL9ABB7259M0"" sent FIN with status "0". +2017-11-13 12:32:36.357 +05:30 [Debug] Connection id ""0HL9ABB7259LV"" sent FIN with status "0". +2017-11-13 12:32:36.357 +05:30 [Debug] Connection id ""0HL9ABB7259LV"" stopped. +2017-11-13 12:32:36.357 +05:30 [Debug] Connection id ""0HL9ABB7259M0"" stopped. +2017-11-13 12:32:36.354 +05:30 [Debug] Connection id ""0HL9ABB7259M3"" disconnecting. +2017-11-13 12:32:36.358 +05:30 [Debug] Connection id ""0HL9ABB7259M2"" sent FIN with status "0". +2017-11-13 12:32:36.360 +05:30 [Debug] Connection id ""0HL9ABB7259M3"" sending FIN. +2017-11-13 12:32:36.360 +05:30 [Debug] Connection id ""0HL9ABB7259M2"" stopped. +2017-11-13 12:32:36.360 +05:30 [Debug] Connection id ""0HL9ABB7259M3"" sent FIN with status "0". +2017-11-13 12:32:36.360 +05:30 [Debug] Connection id ""0HL9ABB7259M3"" stopped. +2017-11-13 12:32:36.361 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-11-13 12:32:36.361 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-11-13 12:32:36.362 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-11-13 12:32:38.456 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d525b71d26ee26"]) - ModelState is Valid +2017-11-13 12:32:39.045 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-11-13 12:32:39.046 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-11-13 12:32:39.047 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-11-13 12:32:39.048 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2685.6991ms +2017-11-13 12:32:39.050 +05:30 [Information] Request finished in 2692.7288ms 200 application/json; charset=utf-8 +2017-11-13 12:32:39.051 +05:30 [Debug] Connection id ""0HL9ABB7259M5"" completed keep alive response. +2017-11-13 12:32:39.061 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-11-13 12:32:39.062 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-11-13 12:32:39.062 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-11-13 12:32:42.107 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d525b71d26ee26"]) - ModelState is Valid +2017-11-13 12:32:43.235 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-11-13 12:32:43.235 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-11-13 12:32:43.236 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-11-13 12:32:43.237 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 4173.2047ms +2017-11-13 12:32:43.239 +05:30 [Information] Request finished in 4180.0631ms 200 application/json; charset=utf-8 +2017-11-13 12:32:43.240 +05:30 [Debug] Connection id ""0HL9ABB7259M5"" completed keep alive response. +2017-11-13 12:32:43.244 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId=48 +2017-11-13 12:32:43.244 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-11-13 12:32:43.245 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-11-13 12:32:45.343 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", "48"]) - ModelState is Valid +2017-11-13 12:32:47.085 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-11-13 12:32:47.085 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-11-13 12:32:47.086 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-11-13 12:32:47.089 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 3842.2233ms +2017-11-13 12:32:47.092 +05:30 [Information] Request finished in 3848.8817ms 200 application/json; charset=utf-8 +2017-11-13 12:32:47.092 +05:30 [Debug] Connection id ""0HL9ABB7259M5"" completed keep alive response. +2017-11-13 12:32:50.173 +05:30 [Debug] Connection id ""0HL9ABB7259M6"" started. +2017-11-13 12:32:50.180 +05:30 [Debug] Connection id ""0HL9ABB7259M7"" started. +2017-11-13 12:32:50.183 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-11-13 12:32:50.191 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-11-13 12:32:50.192 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-11-13 12:32:50.192 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-11-13 12:32:50.192 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-11-13 12:32:50.207 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-11-13 12:32:50.210 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-11-13 12:32:50.211 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-11-13 12:32:50.212 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-11-13 12:32:50.347 +05:30 [Debug] Connection id ""0HL9ABB7259M8"" started. +2017-11-13 12:32:50.373 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-11-13 12:32:50.374 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-11-13 12:32:50.374 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-11-13 12:32:53.803 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-11-13 12:32:53.843 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-11-13 12:32:53.860 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-11-13 12:32:53.877 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-11-13 12:32:54.437 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-11-13 12:32:54.437 +05:30 [Debug] No information found on request to perform content negotiation. +2017-11-13 12:32:54.437 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-11-13 12:32:54.438 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-11-13 12:32:54.439 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 4246.0996ms +2017-11-13 12:32:54.441 +05:30 [Information] Request finished in 4271.8744ms 200 application/json; charset=utf-8 +2017-11-13 12:32:54.442 +05:30 [Debug] Connection id ""0HL9ABB7259M5"" completed keep alive response. +2017-11-13 12:32:54.592 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-11-13 12:32:54.593 +05:30 [Debug] No information found on request to perform content negotiation. +2017-11-13 12:32:54.593 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-11-13 12:32:54.594 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-11-13 12:32:54.600 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 4383.9207ms +2017-11-13 12:32:54.604 +05:30 [Information] Request finished in 4421.59ms 200 application/json; charset=utf-8 +2017-11-13 12:32:54.605 +05:30 [Debug] Connection id ""0HL9ABB7259M6"" completed keep alive response. +2017-11-13 12:32:54.943 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-11-13 12:32:54.944 +05:30 [Debug] No information found on request to perform content negotiation. +2017-11-13 12:32:54.944 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-11-13 12:32:54.945 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-11-13 12:32:54.946 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 4735.4445ms +2017-11-13 12:32:54.948 +05:30 [Information] Request finished in 4765.681ms 200 application/json; charset=utf-8 +2017-11-13 12:32:54.949 +05:30 [Debug] Connection id ""0HL9ABB7259M7"" completed keep alive response. +2017-11-13 12:32:55.076 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-11-13 12:32:55.077 +05:30 [Debug] No information found on request to perform content negotiation. +2017-11-13 12:32:55.077 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-11-13 12:32:55.078 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-11-13 12:32:55.079 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 4704.0281ms +2017-11-13 12:32:55.081 +05:30 [Information] Request finished in 4728.1249ms 200 application/json; charset=utf-8 +2017-11-13 12:32:55.081 +05:30 [Debug] Connection id ""0HL9ABB7259M8"" completed keep alive response. +2017-11-13 12:34:33.961 +05:30 [Debug] Connection id ""0HL9ABB7259M5"" received FIN. +2017-11-13 12:34:33.961 +05:30 [Debug] Connection id ""0HL9ABB7259M6"" received FIN. +2017-11-13 12:34:33.963 +05:30 [Debug] Connection id ""0HL9ABB7259M7"" received FIN. +2017-11-13 12:34:33.963 +05:30 [Debug] Connection id ""0HL9ABB7259M8"" received FIN. +2017-11-13 12:34:33.968 +05:30 [Debug] Connection id ""0HL9ABB7259M5"" disconnecting. +2017-11-13 12:34:33.968 +05:30 [Debug] Connection id ""0HL9ABB7259M5"" sending FIN. +2017-11-13 12:34:33.968 +05:30 [Debug] Connection id ""0HL9ABB7259M6"" disconnecting. +2017-11-13 12:34:33.969 +05:30 [Debug] Connection id ""0HL9ABB7259M7"" disconnecting. +2017-11-13 12:34:33.970 +05:30 [Debug] Connection id ""0HL9ABB7259M6"" sending FIN. +2017-11-13 12:34:33.970 +05:30 [Debug] Connection id ""0HL9ABB7259M8"" disconnecting. +2017-11-13 12:34:33.970 +05:30 [Debug] Connection id ""0HL9ABB7259M6"" sent FIN with status "0". +2017-11-13 12:34:33.969 +05:30 [Debug] Connection id ""0HL9ABB7259M5"" sent FIN with status "0". +2017-11-13 12:34:33.971 +05:30 [Debug] Connection id ""0HL9ABB7259M5"" stopped. +2017-11-13 12:34:33.973 +05:30 [Debug] Connection id ""0HL9ABB7259M7"" sending FIN. +2017-11-13 12:34:33.971 +05:30 [Debug] Connection id ""0HL9ABB7259M6"" stopped. +2017-11-13 12:34:33.973 +05:30 [Debug] Connection id ""0HL9ABB7259M7"" sent FIN with status "0". +2017-11-13 12:34:33.974 +05:30 [Debug] Connection id ""0HL9ABB7259M8"" sending FIN. +2017-11-13 12:34:33.974 +05:30 [Debug] Connection id ""0HL9ABB7259M7"" stopped. +2017-11-13 12:34:33.975 +05:30 [Debug] Connection id ""0HL9ABB7259M8"" sent FIN with status "0". +2017-11-13 12:34:33.975 +05:30 [Debug] Connection id ""0HL9ABB7259M8"" stopped. +2017-11-13 12:34:41.269 +05:30 [Debug] Connection id ""0HL9ABB7259M9"" started. +2017-11-13 12:34:41.271 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-11-13 12:34:41.272 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-11-13 12:34:41.272 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-11-13 12:34:44.322 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d525b71d26ee26"]) - ModelState is Valid +2017-11-13 12:34:44.873 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-11-13 12:34:44.873 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-11-13 12:34:44.875 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-11-13 12:34:44.876 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3602.9618ms +2017-11-13 12:34:44.880 +05:30 [Information] Request finished in 3608.5724ms 200 application/json; charset=utf-8 +2017-11-13 12:34:44.880 +05:30 [Debug] Connection id ""0HL9ABB7259M9"" completed keep alive response. +2017-11-13 12:34:44.890 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-11-13 12:34:44.891 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-11-13 12:34:44.891 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-11-13 12:34:47.940 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d525b71d26ee26"]) - ModelState is Valid +2017-11-13 12:34:49.123 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-11-13 12:34:49.123 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-11-13 12:34:49.124 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-11-13 12:34:49.126 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 4233.1353ms +2017-11-13 12:34:49.130 +05:30 [Information] Request finished in 4239.8664ms 200 application/json; charset=utf-8 +2017-11-13 12:34:49.130 +05:30 [Debug] Connection id ""0HL9ABB7259M9"" completed keep alive response. +2017-11-13 12:34:49.158 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId=48 +2017-11-13 12:34:49.159 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-11-13 12:34:49.159 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-11-13 12:34:51.271 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", "48"]) - ModelState is Valid +2017-11-13 12:34:52.951 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-11-13 12:34:52.951 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-11-13 12:34:52.952 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-11-13 12:34:52.954 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 3792.8002ms +2017-11-13 12:34:52.956 +05:30 [Information] Request finished in 3798.4468ms 200 application/json; charset=utf-8 +2017-11-13 12:34:52.957 +05:30 [Debug] Connection id ""0HL9ABB7259M9"" completed keep alive response. +2017-11-13 12:34:54.045 +05:30 [Debug] Connection id ""0HL9ABB7259MA"" started. +2017-11-13 12:34:54.045 +05:30 [Debug] Connection id ""0HL9ABB7259MB"" started. +2017-11-13 12:34:54.048 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-11-13 12:34:54.049 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-11-13 12:34:54.049 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-11-13 12:34:54.067 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-11-13 12:34:54.069 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-11-13 12:34:54.069 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-11-13 12:34:54.070 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-11-13 12:34:54.075 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-11-13 12:34:54.075 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-11-13 12:34:54.149 +05:30 [Debug] Connection id ""0HL9ABB7259MC"" started. +2017-11-13 12:34:54.150 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-11-13 12:34:54.151 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-11-13 12:34:54.151 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-11-13 12:34:57.242 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-11-13 12:34:57.264 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-11-13 12:34:57.264 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-11-13 12:34:57.267 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-11-13 12:34:57.899 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-11-13 12:34:57.903 +05:30 [Debug] No information found on request to perform content negotiation. +2017-11-13 12:34:57.903 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-11-13 12:34:57.905 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-11-13 12:34:57.907 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 3857.3893ms +2017-11-13 12:34:57.910 +05:30 [Information] Request finished in 3866.0394ms 200 application/json; charset=utf-8 +2017-11-13 12:34:57.910 +05:30 [Debug] Connection id ""0HL9ABB7259M9"" completed keep alive response. +2017-11-13 12:34:58.001 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-11-13 12:34:58.001 +05:30 [Debug] No information found on request to perform content negotiation. +2017-11-13 12:34:58.002 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-11-13 12:34:58.002 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-11-13 12:34:58.003 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3933.6042ms +2017-11-13 12:34:58.005 +05:30 [Information] Request finished in 3958.2251ms 200 application/json; charset=utf-8 +2017-11-13 12:34:58.006 +05:30 [Debug] Connection id ""0HL9ABB7259MB"" completed keep alive response. +2017-11-13 12:34:58.412 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-11-13 12:34:58.413 +05:30 [Debug] No information found on request to perform content negotiation. +2017-11-13 12:34:58.413 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-11-13 12:34:58.417 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-11-13 12:34:58.424 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 4341.9123ms +2017-11-13 12:34:58.435 +05:30 [Information] Request finished in 4385.4668ms 200 application/json; charset=utf-8 +2017-11-13 12:34:58.436 +05:30 [Debug] Connection id ""0HL9ABB7259MA"" completed keep alive response. +2017-11-13 12:34:58.519 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-11-13 12:34:58.520 +05:30 [Debug] No information found on request to perform content negotiation. +2017-11-13 12:34:58.520 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-11-13 12:34:58.526 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-11-13 12:34:58.541 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 4375.4141ms +2017-11-13 12:34:58.561 +05:30 [Information] Request finished in 4410.5766ms 200 application/json; charset=utf-8 +2017-11-13 12:34:58.562 +05:30 [Debug] Connection id ""0HL9ABB7259MC"" completed keep alive response. +2017-11-13 12:36:24.553 +05:30 [Debug] Connection id ""0HL9ABB7259M9"" received FIN. +2017-11-13 12:36:24.553 +05:30 [Debug] Connection id ""0HL9ABB7259MA"" received FIN. +2017-11-13 12:36:24.554 +05:30 [Debug] Connection id ""0HL9ABB7259M9"" disconnecting. +2017-11-13 12:36:24.554 +05:30 [Debug] Connection id ""0HL9ABB7259MB"" received FIN. +2017-11-13 12:36:24.554 +05:30 [Debug] Connection id ""0HL9ABB7259MA"" disconnecting. +2017-11-13 12:36:24.554 +05:30 [Debug] Connection id ""0HL9ABB7259MC"" received FIN. +2017-11-13 12:36:24.555 +05:30 [Debug] Connection id ""0HL9ABB7259MB"" disconnecting. +2017-11-13 12:36:24.555 +05:30 [Debug] Connection id ""0HL9ABB7259M9"" sending FIN. +2017-11-13 12:36:24.555 +05:30 [Debug] Connection id ""0HL9ABB7259MC"" disconnecting. +2017-11-13 12:36:24.556 +05:30 [Debug] Connection id ""0HL9ABB7259MB"" sending FIN. +2017-11-13 12:36:24.555 +05:30 [Debug] Connection id ""0HL9ABB7259MA"" sending FIN. +2017-11-13 12:36:24.557 +05:30 [Debug] Connection id ""0HL9ABB7259MB"" sent FIN with status "0". +2017-11-13 12:36:24.557 +05:30 [Debug] Connection id ""0HL9ABB7259MB"" stopped. +2017-11-13 12:36:24.557 +05:30 [Debug] Connection id ""0HL9ABB7259MC"" sending FIN. +2017-11-13 12:36:24.558 +05:30 [Debug] Connection id ""0HL9ABB7259M9"" sent FIN with status "0". +2017-11-13 12:36:24.558 +05:30 [Debug] Connection id ""0HL9ABB7259MC"" sent FIN with status "0". +2017-11-13 12:36:24.559 +05:30 [Debug] Connection id ""0HL9ABB7259M9"" stopped. +2017-11-13 12:36:24.559 +05:30 [Debug] Connection id ""0HL9ABB7259MC"" stopped. +2017-11-13 12:36:24.560 +05:30 [Debug] Connection id ""0HL9ABB7259MA"" sent FIN with status "0". +2017-11-13 12:36:24.560 +05:30 [Debug] Connection id ""0HL9ABB7259MA"" stopped. +2017-11-13 12:36:37.721 +05:30 [Debug] Connection id ""0HL9ABB7259MD"" started. +2017-11-13 12:36:37.749 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-11-13 12:36:37.750 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-11-13 12:36:37.750 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-11-13 12:36:40.803 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d525b71d26ee26"]) - ModelState is Valid +2017-11-13 12:36:41.391 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-11-13 12:36:41.391 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-11-13 12:36:41.393 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-11-13 12:36:41.394 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3642.7163ms +2017-11-13 12:36:41.397 +05:30 [Information] Request finished in 3674.3135ms 200 application/json; charset=utf-8 +2017-11-13 12:36:41.398 +05:30 [Debug] Connection id ""0HL9ABB7259MD"" completed keep alive response. +2017-11-13 12:36:41.408 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-11-13 12:36:41.410 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-11-13 12:36:41.410 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-11-13 12:36:44.453 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d525b71d26ee26"]) - ModelState is Valid +2017-11-13 12:36:45.600 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-11-13 12:36:45.600 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-11-13 12:36:45.601 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-11-13 12:36:45.603 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 4191.3772ms +2017-11-13 12:36:45.606 +05:30 [Information] Request finished in 4199.1729ms 200 application/json; charset=utf-8 +2017-11-13 12:36:45.607 +05:30 [Debug] Connection id ""0HL9ABB7259MD"" completed keep alive response. +2017-11-13 12:36:45.612 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId=48 +2017-11-13 12:36:45.613 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-11-13 12:36:45.614 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-11-13 12:36:48.661 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", "48"]) - ModelState is Valid +2017-11-13 12:36:50.383 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-11-13 12:36:50.383 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-11-13 12:36:50.385 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-11-13 12:36:50.387 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4771.5969ms +2017-11-13 12:36:50.390 +05:30 [Information] Request finished in 4778.2317ms 200 application/json; charset=utf-8 +2017-11-13 12:36:50.391 +05:30 [Debug] Connection id ""0HL9ABB7259MD"" completed keep alive response. +2017-11-13 12:36:54.711 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-11-13 12:36:54.712 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-11-13 12:36:54.713 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-11-13 12:36:55.448 +05:30 [Debug] Connection id ""0HL9ABB7259ME"" started. +2017-11-13 12:36:55.453 +05:30 [Debug] Connection id ""0HL9ABB7259MG"" started. +2017-11-13 12:36:55.453 +05:30 [Debug] Connection id ""0HL9ABB7259MF"" started. +2017-11-13 12:36:55.483 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-11-13 12:36:55.483 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-11-13 12:36:55.484 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-11-13 12:36:55.599 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-11-13 12:36:55.599 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-11-13 12:36:55.599 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-11-13 12:36:55.643 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-11-13 12:36:55.644 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-11-13 12:36:55.644 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-11-13 12:36:57.857 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-11-13 12:36:57.955 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-11-13 12:36:58.413 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-11-13 12:36:58.413 +05:30 [Debug] No information found on request to perform content negotiation. +2017-11-13 12:36:58.413 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-11-13 12:36:58.415 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-11-13 12:36:58.417 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 2815.7096ms +2017-11-13 12:36:58.422 +05:30 [Information] Request finished in 2955.2015ms 200 application/json; charset=utf-8 +2017-11-13 12:36:58.422 +05:30 [Debug] Connection id ""0HL9ABB7259ME"" completed keep alive response. +2017-11-13 12:36:58.707 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-11-13 12:36:58.782 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-11-13 12:36:59.176 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-11-13 12:36:59.176 +05:30 [Debug] No information found on request to perform content negotiation. +2017-11-13 12:36:59.176 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-11-13 12:36:59.177 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-11-13 12:36:59.178 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 4464.3258ms +2017-11-13 12:36:59.180 +05:30 [Information] Request finished in 4474.4392ms 200 application/json; charset=utf-8 +2017-11-13 12:36:59.181 +05:30 [Debug] Connection id ""0HL9ABB7259MD"" completed keep alive response. +2017-11-13 12:36:59.468 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-11-13 12:36:59.468 +05:30 [Debug] No information found on request to perform content negotiation. +2017-11-13 12:36:59.468 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-11-13 12:36:59.469 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-11-13 12:36:59.470 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3985.438ms +2017-11-13 12:36:59.473 +05:30 [Information] Request finished in 4014.3523ms 200 application/json; charset=utf-8 +2017-11-13 12:36:59.474 +05:30 [Debug] Connection id ""0HL9ABB7259MF"" completed keep alive response. +2017-11-13 12:36:59.914 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-11-13 12:36:59.915 +05:30 [Debug] No information found on request to perform content negotiation. +2017-11-13 12:36:59.915 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-11-13 12:36:59.916 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-11-13 12:36:59.917 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 4271.9328ms +2017-11-13 12:36:59.920 +05:30 [Information] Request finished in 4455.0174ms 200 application/json; charset=utf-8 +2017-11-13 12:36:59.921 +05:30 [Debug] Connection id ""0HL9ABB7259MG"" completed keep alive response. +2017-11-13 12:37:42.787 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-11-13 12:37:42.787 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-11-13 12:37:42.787 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-11-13 12:37:45.824 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d525b71d26ee26"]) - ModelState is Valid +2017-11-13 12:37:46.424 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-11-13 12:37:46.424 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-11-13 12:37:46.425 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-11-13 12:37:46.427 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3637.9673ms +2017-11-13 12:37:46.429 +05:30 [Information] Request finished in 3642.8662ms 200 application/json; charset=utf-8 +2017-11-13 12:37:46.430 +05:30 [Debug] Connection id ""0HL9ABB7259ME"" completed keep alive response. +2017-11-13 12:37:46.437 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-11-13 12:37:46.437 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-11-13 12:37:46.438 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-11-13 12:37:49.477 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d525b71d26ee26"]) - ModelState is Valid +2017-11-13 12:37:50.613 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-11-13 12:37:50.614 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-11-13 12:37:50.615 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-11-13 12:37:50.616 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 4175.9643ms +2017-11-13 12:37:50.619 +05:30 [Information] Request finished in 4181.6486ms 200 application/json; charset=utf-8 +2017-11-13 12:37:50.619 +05:30 [Debug] Connection id ""0HL9ABB7259MD"" completed keep alive response. +2017-11-13 12:37:50.622 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId=48 +2017-11-13 12:37:50.623 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-11-13 12:37:50.623 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-11-13 12:37:53.692 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", "48"]) - ModelState is Valid +2017-11-13 12:37:55.436 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-11-13 12:37:55.437 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-11-13 12:37:55.437 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-11-13 12:37:55.439 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4815.3389ms +2017-11-13 12:37:55.441 +05:30 [Information] Request finished in 4818.8667ms 200 application/json; charset=utf-8 +2017-11-13 12:37:55.441 +05:30 [Debug] Connection id ""0HL9ABB7259MF"" completed keep alive response. +2017-11-13 12:37:58.722 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-11-13 12:37:58.724 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-11-13 12:37:58.724 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-11-13 12:37:59.561 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-11-13 12:37:59.562 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-11-13 12:37:59.562 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-11-13 12:37:59.595 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-11-13 12:37:59.596 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-11-13 12:37:59.600 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-11-13 12:37:59.608 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-11-13 12:37:59.609 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-11-13 12:37:59.609 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-11-13 12:38:02.551 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-11-13 12:38:02.702 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-11-13 12:38:02.749 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-11-13 12:38:02.774 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-11-13 12:38:03.343 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-11-13 12:38:03.344 +05:30 [Debug] No information found on request to perform content negotiation. +2017-11-13 12:38:03.344 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-11-13 12:38:03.344 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-11-13 12:38:03.345 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 3782.5777ms +2017-11-13 12:38:03.347 +05:30 [Information] Request finished in 3803.4024ms 200 application/json; charset=utf-8 +2017-11-13 12:38:03.348 +05:30 [Debug] Connection id ""0HL9ABB7259ME"" completed keep alive response. +2017-11-13 12:38:03.443 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-11-13 12:38:03.443 +05:30 [Debug] No information found on request to perform content negotiation. +2017-11-13 12:38:03.444 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-11-13 12:38:03.444 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-11-13 12:38:03.445 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3835.6194ms +2017-11-13 12:38:03.447 +05:30 [Information] Request finished in 3899.7824ms 200 application/json; charset=utf-8 +2017-11-13 12:38:03.448 +05:30 [Debug] Connection id ""0HL9ABB7259MF"" completed keep alive response. +2017-11-13 12:38:03.776 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-11-13 12:38:03.776 +05:30 [Debug] No information found on request to perform content negotiation. +2017-11-13 12:38:03.776 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-11-13 12:38:03.777 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-11-13 12:38:03.778 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 5053.311ms +2017-11-13 12:38:03.779 +05:30 [Information] Request finished in 5059.5081ms 200 application/json; charset=utf-8 +2017-11-13 12:38:03.780 +05:30 [Debug] Connection id ""0HL9ABB7259MG"" completed keep alive response. +2017-11-13 12:38:03.923 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-11-13 12:38:03.924 +05:30 [Debug] No information found on request to perform content negotiation. +2017-11-13 12:38:03.924 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-11-13 12:38:03.925 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-11-13 12:38:03.927 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 4324.9702ms +2017-11-13 12:38:03.930 +05:30 [Information] Request finished in 4383.3373ms 200 application/json; charset=utf-8 +2017-11-13 12:38:03.930 +05:30 [Debug] Connection id ""0HL9ABB7259MD"" completed keep alive response. +2017-11-13 12:40:03.960 +05:30 [Debug] Connection id ""0HL9ABB7259ME"" received FIN. +2017-11-13 12:40:03.960 +05:30 [Debug] Connection id ""0HL9ABB7259MG"" received FIN. +2017-11-13 12:40:03.961 +05:30 [Debug] Connection id ""0HL9ABB7259ME"" disconnecting. +2017-11-13 12:40:03.961 +05:30 [Debug] Connection id ""0HL9ABB7259MD"" received FIN. +2017-11-13 12:40:03.960 +05:30 [Debug] Connection id ""0HL9ABB7259MF"" received FIN. +2017-11-13 12:40:03.962 +05:30 [Debug] Connection id ""0HL9ABB7259MG"" disconnecting. +2017-11-13 12:40:03.963 +05:30 [Debug] Connection id ""0HL9ABB7259ME"" sending FIN. +2017-11-13 12:40:03.986 +05:30 [Debug] Connection id ""0HL9ABB7259MG"" sending FIN. +2017-11-13 12:40:03.987 +05:30 [Debug] Connection id ""0HL9ABB7259ME"" sent FIN with status "0". +2017-11-13 12:40:03.987 +05:30 [Debug] Connection id ""0HL9ABB7259MG"" sent FIN with status "0". +2017-11-13 12:40:03.986 +05:30 [Debug] Connection id ""0HL9ABB7259MD"" disconnecting. +2017-11-13 12:40:03.987 +05:30 [Debug] Connection id ""0HL9ABB7259ME"" stopped. +2017-11-13 12:40:03.987 +05:30 [Debug] Connection id ""0HL9ABB7259MG"" stopped. +2017-11-13 12:40:03.989 +05:30 [Debug] Connection id ""0HL9ABB7259MD"" sending FIN. +2017-11-13 12:40:03.987 +05:30 [Debug] Connection id ""0HL9ABB7259MF"" disconnecting. +2017-11-13 12:40:03.989 +05:30 [Debug] Connection id ""0HL9ABB7259MD"" sent FIN with status "0". +2017-11-13 12:40:03.989 +05:30 [Debug] Connection id ""0HL9ABB7259MF"" sending FIN. +2017-11-13 12:40:03.990 +05:30 [Debug] Connection id ""0HL9ABB7259MD"" stopped. +2017-11-13 12:40:03.990 +05:30 [Debug] Connection id ""0HL9ABB7259MF"" sent FIN with status "0". +2017-11-13 12:40:03.990 +05:30 [Debug] Connection id ""0HL9ABB7259MF"" stopped. +2017-11-13 12:40:46.372 +05:30 [Debug] Connection id ""0HL9ABB7259MI"" started. +2017-11-13 12:40:46.372 +05:30 [Debug] Connection id ""0HL9ABB7259MH"" started. +2017-11-13 12:40:46.376 +05:30 [Debug] Connection id ""0HL9ABB7259MJ"" started. +2017-11-13 12:40:46.377 +05:30 [Debug] Connection id ""0HL9ABB7259MK"" started. +2017-11-13 12:40:46.402 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Media/get?id=RXUXMU9NL9.jpg +2017-11-13 12:40:46.402 +05:30 [Debug] Connection id ""0HL9ABB7259ML"" started. +2017-11-13 12:40:46.402 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Media/Get"'. +2017-11-13 12:40:46.400 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Media/get?id=VIJHSGP0P7.jpg +2017-11-13 12:40:46.405 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Media/get?id=UBPRCBPSGL.mp4 +2017-11-13 12:40:46.406 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Media/Get"'. +2017-11-13 12:40:46.406 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Media/Get"'. +2017-11-13 12:40:46.405 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.MediaController.Get (Api.Socioboard)" +2017-11-13 12:40:46.406 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.MediaController.Get (Api.Socioboard)" +2017-11-13 12:40:46.406 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.MediaController.Get (Api.Socioboard)" +2017-11-13 12:40:46.409 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Media/get?id=0U1J1406J7.mp4 +2017-11-13 12:40:46.409 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Media/Get"'. +2017-11-13 12:40:46.409 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.MediaController.Get (Api.Socioboard)" +2017-11-13 12:40:46.479 +05:30 [Debug] Connection id ""0HL9ABB7259MM"" started. +2017-11-13 12:40:47.379 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Media/get?id=UUJYZ1TVI7.mp4 +2017-11-13 12:40:47.380 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Media/Get"'. +2017-11-13 12:40:47.380 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.MediaController.Get (Api.Socioboard)" +2017-11-13 12:40:48.381 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Media/get?id=N7U30M5TOH.mp4 +2017-11-13 12:40:48.381 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Media/Get"'. +2017-11-13 12:40:48.382 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.MediaController.Get (Api.Socioboard)" +2017-11-13 12:40:51.419 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.MediaController.Get (Api.Socioboard)" with arguments (["VIJHSGP0P7.jpg"]) - ModelState is Valid +2017-11-13 12:40:51.421 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.MediaController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.BadRequestResult". +2017-11-13 12:40:51.427 +05:30 [Information] Executing HttpStatusCodeResult, setting HTTP status code 400 +2017-11-13 12:40:51.428 +05:30 [Information] Executed action "Api.Socioboard.Controllers.MediaController.Get (Api.Socioboard)" in 5018.9291ms +2017-11-13 12:40:51.430 +05:30 [Information] Request finished in 5052.6374ms 400 +2017-11-13 12:40:51.431 +05:30 [Debug] Connection id ""0HL9ABB7259MI"" completed keep alive response. +2017-11-13 12:40:52.469 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.MediaController.Get (Api.Socioboard)" with arguments (["RXUXMU9NL9.jpg"]) - ModelState is Valid +2017-11-13 12:40:52.539 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.MediaController.Get (Api.Socioboard)" with arguments (["0U1J1406J7.mp4"]) - ModelState is Valid +2017-11-13 12:40:52.572 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Media/get?id=PH1DLVML0H.mp4 +2017-11-13 12:40:52.551 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.MediaController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.BadRequestResult". +2017-11-13 12:40:52.594 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Media/Get"'. +2017-11-13 12:40:52.595 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.MediaController.Get (Api.Socioboard)" with arguments (["UUJYZ1TVI7.mp4"]) - ModelState is Valid +2017-11-13 12:40:52.596 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.MediaController.Get (Api.Socioboard)" with arguments (["N7U30M5TOH.mp4"]) - ModelState is Valid +2017-11-13 12:40:52.596 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.MediaController.Get (Api.Socioboard)" +2017-11-13 12:40:52.597 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.MediaController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.BadRequestResult". +2017-11-13 12:40:52.596 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.MediaController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.BadRequestResult". +2017-11-13 12:40:52.593 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.MediaController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.BadRequestResult". +2017-11-13 12:40:52.618 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.MediaController.Get (Api.Socioboard)" with arguments (["UBPRCBPSGL.mp4"]) - ModelState is Valid +2017-11-13 12:40:52.643 +05:30 [Information] Executing HttpStatusCodeResult, setting HTTP status code 400 +2017-11-13 12:40:52.643 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.MediaController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.BadRequestResult". +2017-11-13 12:40:52.644 +05:30 [Information] Executing HttpStatusCodeResult, setting HTTP status code 400 +2017-11-13 12:40:52.645 +05:30 [Information] Executing HttpStatusCodeResult, setting HTTP status code 400 +2017-11-13 12:40:52.665 +05:30 [Information] Executed action "Api.Socioboard.Controllers.MediaController.Get (Api.Socioboard)" in 6236.4341ms +2017-11-13 12:40:52.666 +05:30 [Information] Executing HttpStatusCodeResult, setting HTTP status code 400 +2017-11-13 12:40:52.665 +05:30 [Information] Executed action "Api.Socioboard.Controllers.MediaController.Get (Api.Socioboard)" in 5263.6479ms +2017-11-13 12:40:52.667 +05:30 [Information] Executed action "Api.Socioboard.Controllers.MediaController.Get (Api.Socioboard)" in 6256.5936ms +2017-11-13 12:40:52.668 +05:30 [Information] Executing HttpStatusCodeResult, setting HTTP status code 400 +2017-11-13 12:40:52.691 +05:30 [Information] Executed action "Api.Socioboard.Controllers.MediaController.Get (Api.Socioboard)" in 4285.5095ms +2017-11-13 12:40:52.735 +05:30 [Information] Request finished in 6291.9468ms 400 +2017-11-13 12:40:52.758 +05:30 [Debug] Connection id ""0HL9ABB7259MH"" completed keep alive response. +2017-11-13 12:40:52.758 +05:30 [Information] Request finished in 5312.8679ms 400 +2017-11-13 12:40:52.764 +05:30 [Debug] Connection id ""0HL9ABB7259ML"" completed keep alive response. +2017-11-13 12:40:52.770 +05:30 [Information] Executed action "Api.Socioboard.Controllers.MediaController.Get (Api.Socioboard)" in 6284.5373ms +2017-11-13 12:40:52.781 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Media/get?id=J56LNEQQUU.mp4 +2017-11-13 12:40:52.786 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Media/Get"'. +2017-11-13 12:40:52.786 +05:30 [Information] Request finished in 4357.087ms 400 +2017-11-13 12:40:52.787 +05:30 [Debug] Connection id ""0HL9ABB7259MM"" completed keep alive response. +2017-11-13 12:40:52.787 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.MediaController.Get (Api.Socioboard)" +2017-11-13 12:40:52.802 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Media/get?id=RATFBY62U1.mp4 +2017-11-13 12:40:52.802 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Media/Get"'. +2017-11-13 12:40:52.804 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.MediaController.Get (Api.Socioboard)" +2017-11-13 12:40:52.805 +05:30 [Information] Request finished in 6309.3371ms 400 +2017-11-13 12:40:52.855 +05:30 [Debug] Connection id ""0HL9ABB7259MK"" completed keep alive response. +2017-11-13 12:40:52.856 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Media/get?id=9LYVENPITI.mp4 +2017-11-13 12:40:52.857 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Media/Get"'. +2017-11-13 12:40:52.858 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.MediaController.Get (Api.Socioboard)" +2017-11-13 12:40:52.866 +05:30 [Information] Request finished in 6379.297ms 400 +2017-11-13 12:40:52.866 +05:30 [Debug] Connection id ""0HL9ABB7259MJ"" completed keep alive response. +2017-11-13 12:40:52.874 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Media/get?id=ZVP8TJEQ7Q.mp4 +2017-11-13 12:40:52.874 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Media/Get"'. +2017-11-13 12:40:52.875 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.MediaController.Get (Api.Socioboard)" +2017-11-13 12:40:52.879 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Media/get?id=F7MY4F0MX7.jpg +2017-11-13 12:40:52.880 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Media/Get"'. +2017-11-13 12:40:52.880 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.MediaController.Get (Api.Socioboard)" +2017-11-13 12:40:55.002 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.MediaController.Get (Api.Socioboard)" with arguments (["9LYVENPITI.mp4"]) - ModelState is Valid +2017-11-13 12:40:55.004 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.MediaController.Get (Api.Socioboard)" with arguments (["F7MY4F0MX7.jpg"]) - ModelState is Valid +2017-11-13 12:40:55.005 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.MediaController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.BadRequestResult". +2017-11-13 12:40:55.006 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.MediaController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.BadRequestResult". +2017-11-13 12:40:55.008 +05:30 [Information] Executing HttpStatusCodeResult, setting HTTP status code 400 +2017-11-13 12:40:55.010 +05:30 [Information] Executing HttpStatusCodeResult, setting HTTP status code 400 +2017-11-13 12:40:55.011 +05:30 [Information] Executed action "Api.Socioboard.Controllers.MediaController.Get (Api.Socioboard)" in 2151.1966ms +2017-11-13 12:40:55.012 +05:30 [Information] Executed action "Api.Socioboard.Controllers.MediaController.Get (Api.Socioboard)" in 2130.9571ms +2017-11-13 12:40:55.037 +05:30 [Information] Request finished in 2212.136ms 400 +2017-11-13 12:40:55.037 +05:30 [Debug] Connection id ""0HL9ABB7259MM"" completed keep alive response. +2017-11-13 12:40:55.037 +05:30 [Information] Request finished in 2144.4969ms 400 +2017-11-13 12:40:55.038 +05:30 [Debug] Connection id ""0HL9ABB7259MJ"" completed keep alive response. +2017-11-13 12:40:55.062 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Media/get?id=5ORQXXSTZ9.jpg +2017-11-13 12:40:55.062 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Media/Get"'. +2017-11-13 12:40:55.063 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.MediaController.Get (Api.Socioboard)" +2017-11-13 12:40:55.669 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.MediaController.Get (Api.Socioboard)" with arguments (["PH1DLVML0H.mp4"]) - ModelState is Valid +2017-11-13 12:40:55.670 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.MediaController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.BadRequestResult". +2017-11-13 12:40:55.670 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Media/getUserImages?id=1LYMPX2AEK.jpg +2017-11-13 12:40:55.671 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Media/GetUserImages"'. +2017-11-13 12:40:55.673 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.MediaController.GetUserImages (Api.Socioboard)" +2017-11-13 12:40:55.673 +05:30 [Information] Executing HttpStatusCodeResult, setting HTTP status code 400 +2017-11-13 12:40:55.676 +05:30 [Information] Executed action "Api.Socioboard.Controllers.MediaController.Get (Api.Socioboard)" in 3077.2536ms +2017-11-13 12:40:55.679 +05:30 [Information] Request finished in 3176.8634ms 400 +2017-11-13 12:40:55.679 +05:30 [Debug] Connection id ""0HL9ABB7259MI"" completed keep alive response. +2017-11-13 12:40:55.699 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Media/getUserImages?id=GGD18FG8GQ.jpg +2017-11-13 12:40:55.699 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Media/GetUserImages"'. +2017-11-13 12:40:55.700 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.MediaController.GetUserImages (Api.Socioboard)" +2017-11-13 12:40:55.865 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.MediaController.Get (Api.Socioboard)" with arguments (["J56LNEQQUU.mp4"]) - ModelState is Valid +2017-11-13 12:40:55.865 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.MediaController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.BadRequestResult". +2017-11-13 12:40:55.866 +05:30 [Information] Executing HttpStatusCodeResult, setting HTTP status code 400 +2017-11-13 12:40:55.867 +05:30 [Information] Executed action "Api.Socioboard.Controllers.MediaController.Get (Api.Socioboard)" in 3066.7954ms +2017-11-13 12:40:55.870 +05:30 [Information] Request finished in 3097.8075ms 400 +2017-11-13 12:40:55.871 +05:30 [Debug] Connection id ""0HL9ABB7259ML"" completed keep alive response. +2017-11-13 12:40:55.910 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Media/getUserImages?id=IGDI23C8LB.jpg +2017-11-13 12:40:55.920 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Media/GetUserImages"'. +2017-11-13 12:40:55.921 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.MediaController.GetUserImages (Api.Socioboard)" +2017-11-13 12:40:55.934 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.MediaController.Get (Api.Socioboard)" with arguments (["RATFBY62U1.mp4"]) - ModelState is Valid +2017-11-13 12:40:55.935 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.MediaController.Get (Api.Socioboard)" with arguments (["ZVP8TJEQ7Q.mp4"]) - ModelState is Valid +2017-11-13 12:40:55.935 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.MediaController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.BadRequestResult". +2017-11-13 12:40:55.958 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.MediaController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.BadRequestResult". +2017-11-13 12:40:55.959 +05:30 [Information] Executing HttpStatusCodeResult, setting HTTP status code 400 +2017-11-13 12:40:55.959 +05:30 [Information] Executing HttpStatusCodeResult, setting HTTP status code 400 +2017-11-13 12:40:55.960 +05:30 [Information] Executed action "Api.Socioboard.Controllers.MediaController.Get (Api.Socioboard)" in 3152.1837ms +2017-11-13 12:40:55.960 +05:30 [Information] Executed action "Api.Socioboard.Controllers.MediaController.Get (Api.Socioboard)" in 3084.5175ms +2017-11-13 12:40:55.962 +05:30 [Information] Request finished in 3098.9498ms 400 +2017-11-13 12:40:55.963 +05:30 [Debug] Connection id ""0HL9ABB7259MK"" completed keep alive response. +2017-11-13 12:40:55.963 +05:30 [Information] Request finished in 3192.7046ms 400 +2017-11-13 12:40:55.964 +05:30 [Debug] Connection id ""0HL9ABB7259MH"" completed keep alive response. +2017-11-13 12:40:55.973 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Media/getUserImages?id=MNDY1WGK63.jpg +2017-11-13 12:40:55.974 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Media/getUserImages?id=K16P4ZUIYD.jpg +2017-11-13 12:40:55.974 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Media/GetUserImages"'. +2017-11-13 12:40:55.974 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Media/GetUserImages"'. +2017-11-13 12:40:55.975 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.MediaController.GetUserImages (Api.Socioboard)" +2017-11-13 12:40:55.974 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.MediaController.GetUserImages (Api.Socioboard)" +2017-11-13 12:40:57.761 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.MediaController.GetUserImages (Api.Socioboard)" with arguments (["1LYMPX2AEK.jpg"]) - ModelState is Valid +2017-11-13 12:40:57.762 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.MediaController.GetUserImages (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.BadRequestResult". +2017-11-13 12:40:57.763 +05:30 [Information] Executing HttpStatusCodeResult, setting HTTP status code 400 +2017-11-13 12:40:57.764 +05:30 [Information] Executed action "Api.Socioboard.Controllers.MediaController.GetUserImages (Api.Socioboard)" in 2090.9594ms +2017-11-13 12:40:57.766 +05:30 [Information] Request finished in 2096.1927ms 400 +2017-11-13 12:40:57.767 +05:30 [Debug] Connection id ""0HL9ABB7259MJ"" completed keep alive response. +2017-11-13 12:40:58.089 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.MediaController.Get (Api.Socioboard)" with arguments (["5ORQXXSTZ9.jpg"]) - ModelState is Valid +2017-11-13 12:40:58.090 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.MediaController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.BadRequestResult". +2017-11-13 12:40:58.092 +05:30 [Information] Executing HttpStatusCodeResult, setting HTTP status code 400 +2017-11-13 12:40:58.093 +05:30 [Information] Executed action "Api.Socioboard.Controllers.MediaController.Get (Api.Socioboard)" in 3028.3088ms +2017-11-13 12:40:58.094 +05:30 [Information] Request finished in 3046.9951ms 400 +2017-11-13 12:40:58.094 +05:30 [Debug] Connection id ""0HL9ABB7259MM"" completed keep alive response. +2017-11-13 12:40:58.737 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.MediaController.GetUserImages (Api.Socioboard)" with arguments (["GGD18FG8GQ.jpg"]) - ModelState is Valid +2017-11-13 12:40:58.737 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.MediaController.GetUserImages (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.BadRequestResult". +2017-11-13 12:40:58.738 +05:30 [Information] Executing HttpStatusCodeResult, setting HTTP status code 400 +2017-11-13 12:40:58.738 +05:30 [Information] Executed action "Api.Socioboard.Controllers.MediaController.GetUserImages (Api.Socioboard)" in 3038.2473ms +2017-11-13 12:40:58.740 +05:30 [Information] Request finished in 3041.6128ms 400 +2017-11-13 12:40:58.740 +05:30 [Debug] Connection id ""0HL9ABB7259MI"" completed keep alive response. +2017-11-13 12:40:58.989 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.MediaController.GetUserImages (Api.Socioboard)" with arguments (["IGDI23C8LB.jpg"]) - ModelState is Valid +2017-11-13 12:40:58.989 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.MediaController.GetUserImages (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.BadRequestResult". +2017-11-13 12:40:59.038 +05:30 [Information] Executing HttpStatusCodeResult, setting HTTP status code 400 +2017-11-13 12:40:59.081 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.MediaController.GetUserImages (Api.Socioboard)" with arguments (["K16P4ZUIYD.jpg"]) - ModelState is Valid +2017-11-13 12:40:59.081 +05:30 [Information] Executed action "Api.Socioboard.Controllers.MediaController.GetUserImages (Api.Socioboard)" in 3117.4918ms +2017-11-13 12:40:59.082 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.MediaController.GetUserImages (Api.Socioboard)" with arguments (["MNDY1WGK63.jpg"]) - ModelState is Valid +2017-11-13 12:40:59.096 +05:30 [Information] Request finished in 3200.2223ms 400 +2017-11-13 12:40:59.097 +05:30 [Debug] Connection id ""0HL9ABB7259ML"" completed keep alive response. +2017-11-13 12:40:59.176 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.MediaController.GetUserImages (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-11-13 12:40:59.176 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.MediaController.GetUserImages (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-11-13 12:40:59.176 +05:30 [Debug] No information found on request to perform content negotiation. +2017-11-13 12:40:59.176 +05:30 [Debug] No information found on request to perform content negotiation. +2017-11-13 12:40:59.177 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StreamOutputFormatter"' and content type '""' to write the response. +2017-11-13 12:40:59.177 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StreamOutputFormatter"' and content type '""' to write the response. +2017-11-13 12:40:59.178 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-11-13 12:40:59.178 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-11-13 12:40:59.240 +05:30 [Information] Executed action "Api.Socioboard.Controllers.MediaController.GetUserImages (Api.Socioboard)" in 3262.309ms +2017-11-13 12:40:59.251 +05:30 [Information] Request finished in 3273.8835ms 200 +2017-11-13 12:40:59.252 +05:30 [Debug] Connection id ""0HL9ABB7259MK"" completed keep alive response. +2017-11-13 12:40:59.309 +05:30 [Information] Executed action "Api.Socioboard.Controllers.MediaController.GetUserImages (Api.Socioboard)" in 3332.751ms +2017-11-13 12:40:59.313 +05:30 [Information] Request finished in 3339.1161ms 200 +2017-11-13 12:40:59.313 +05:30 [Debug] Connection id ""0HL9ABB7259MH"" completed keep alive response. +2017-11-13 12:41:18.480 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Media/get?id=RXUXMU9NL9.jpg +2017-11-13 12:41:18.480 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Media/Get"'. +2017-11-13 12:41:18.480 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Media/get?id=0U1J1406J7.mp4 +2017-11-13 12:41:18.482 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.MediaController.Get (Api.Socioboard)" +2017-11-13 12:41:18.482 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Media/Get"'. +2017-11-13 12:41:18.482 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.MediaController.Get (Api.Socioboard)" +2017-11-13 12:41:18.483 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Media/get?id=UBPRCBPSGL.mp4 +2017-11-13 12:41:18.483 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Media/Get"'. +2017-11-13 12:41:18.485 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.MediaController.Get (Api.Socioboard)" +2017-11-13 12:41:18.488 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Media/get?id=UUJYZ1TVI7.mp4 +2017-11-13 12:41:18.488 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Media/Get"'. +2017-11-13 12:41:18.489 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.MediaController.Get (Api.Socioboard)" +2017-11-13 12:41:18.513 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Media/get?id=N7U30M5TOH.mp4 +2017-11-13 12:41:18.515 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Media/Get"'. +2017-11-13 12:41:18.516 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.MediaController.Get (Api.Socioboard)" +2017-11-13 12:41:18.516 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Media/get?id=VIJHSGP0P7.jpg +2017-11-13 12:41:18.516 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Media/Get"'. +2017-11-13 12:41:18.518 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.MediaController.Get (Api.Socioboard)" +2017-11-13 12:41:20.626 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.MediaController.Get (Api.Socioboard)" with arguments (["0U1J1406J7.mp4"]) - ModelState is Valid +2017-11-13 12:41:20.648 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.MediaController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.BadRequestResult". +2017-11-13 12:41:20.649 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.MediaController.Get (Api.Socioboard)" with arguments (["VIJHSGP0P7.jpg"]) - ModelState is Valid +2017-11-13 12:41:20.650 +05:30 [Information] Executing HttpStatusCodeResult, setting HTTP status code 400 +2017-11-13 12:41:20.650 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.MediaController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.BadRequestResult". +2017-11-13 12:41:20.652 +05:30 [Information] Executed action "Api.Socioboard.Controllers.MediaController.Get (Api.Socioboard)" in 2168.274ms +2017-11-13 12:41:20.653 +05:30 [Information] Executing HttpStatusCodeResult, setting HTTP status code 400 +2017-11-13 12:41:20.655 +05:30 [Information] Request finished in 2180.2378ms 400 +2017-11-13 12:41:20.656 +05:30 [Information] Executed action "Api.Socioboard.Controllers.MediaController.Get (Api.Socioboard)" in 2136.6029ms +2017-11-13 12:41:20.658 +05:30 [Debug] Connection id ""0HL9ABB7259MM"" completed keep alive response. +2017-11-13 12:41:20.664 +05:30 [Information] Request finished in 2184.4156ms 400 +2017-11-13 12:41:20.665 +05:30 [Debug] Connection id ""0HL9ABB7259ML"" completed keep alive response. +2017-11-13 12:41:20.673 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Media/get?id=PH1DLVML0H.mp4 +2017-11-13 12:41:20.674 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Media/Get"'. +2017-11-13 12:41:20.674 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.MediaController.Get (Api.Socioboard)" +2017-11-13 12:41:20.674 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Media/get?id=RATFBY62U1.mp4 +2017-11-13 12:41:20.677 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Media/Get"'. +2017-11-13 12:41:20.678 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.MediaController.Get (Api.Socioboard)" +2017-11-13 12:41:21.608 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.MediaController.Get (Api.Socioboard)" with arguments (["UBPRCBPSGL.mp4"]) - ModelState is Valid +2017-11-13 12:41:21.608 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.MediaController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.BadRequestResult". +2017-11-13 12:41:21.623 +05:30 [Information] Executing HttpStatusCodeResult, setting HTTP status code 400 +2017-11-13 12:41:21.660 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.MediaController.Get (Api.Socioboard)" with arguments (["N7U30M5TOH.mp4"]) - ModelState is Valid +2017-11-13 12:41:21.683 +05:30 [Information] Executed action "Api.Socioboard.Controllers.MediaController.Get (Api.Socioboard)" in 3148.3101ms +2017-11-13 12:41:21.706 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.MediaController.Get (Api.Socioboard)" with arguments (["UUJYZ1TVI7.mp4"]) - ModelState is Valid +2017-11-13 12:41:21.706 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.MediaController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.BadRequestResult". +2017-11-13 12:41:21.706 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.MediaController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.BadRequestResult". +2017-11-13 12:41:21.732 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.MediaController.Get (Api.Socioboard)" with arguments (["RXUXMU9NL9.jpg"]) - ModelState is Valid +2017-11-13 12:41:21.733 +05:30 [Information] Executing HttpStatusCodeResult, setting HTTP status code 400 +2017-11-13 12:41:21.733 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.MediaController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.BadRequestResult". +2017-11-13 12:41:21.734 +05:30 [Information] Request finished in 3253.6963ms 400 +2017-11-13 12:41:21.734 +05:30 [Debug] Connection id ""0HL9ABB7259MK"" completed keep alive response. +2017-11-13 12:41:21.734 +05:30 [Information] Executed action "Api.Socioboard.Controllers.MediaController.Get (Api.Socioboard)" in 3217.6489ms +2017-11-13 12:41:21.735 +05:30 [Information] Executing HttpStatusCodeResult, setting HTTP status code 400 +2017-11-13 12:41:21.738 +05:30 [Information] Executing HttpStatusCodeResult, setting HTTP status code 400 +2017-11-13 12:41:21.742 +05:30 [Information] Executed action "Api.Socioboard.Controllers.MediaController.Get (Api.Socioboard)" in 3254.2153ms +2017-11-13 12:41:21.744 +05:30 [Information] Request finished in 3264.1931ms 400 +2017-11-13 12:41:21.744 +05:30 [Debug] Connection id ""0HL9ABB7259MH"" completed keep alive response. +2017-11-13 12:41:21.754 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Media/get?id=9LYVENPITI.mp4 +2017-11-13 12:41:21.755 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Media/Get"'. +2017-11-13 12:41:21.755 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.MediaController.Get (Api.Socioboard)" +2017-11-13 12:41:21.760 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Media/get?id=J56LNEQQUU.mp4 +2017-11-13 12:41:21.761 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Media/Get"'. +2017-11-13 12:41:21.762 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.MediaController.Get (Api.Socioboard)" +2017-11-13 12:41:21.767 +05:30 [Information] Executed action "Api.Socioboard.Controllers.MediaController.Get (Api.Socioboard)" in 3249.4507ms +2017-11-13 12:41:21.769 +05:30 [Information] Request finished in 3292.1548ms 400 +2017-11-13 12:41:21.770 +05:30 [Debug] Connection id ""0HL9ABB7259MJ"" completed keep alive response. +2017-11-13 12:41:21.776 +05:30 [Information] Request finished in 3300.3418ms 400 +2017-11-13 12:41:21.777 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Media/get?id=ZVP8TJEQ7Q.mp4 +2017-11-13 12:41:21.777 +05:30 [Debug] Connection id ""0HL9ABB7259MI"" completed keep alive response. +2017-11-13 12:41:21.778 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Media/Get"'. +2017-11-13 12:41:21.779 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.MediaController.Get (Api.Socioboard)" +2017-11-13 12:41:23.760 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.MediaController.Get (Api.Socioboard)" with arguments (["PH1DLVML0H.mp4"]) - ModelState is Valid +2017-11-13 12:41:23.761 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.MediaController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.BadRequestResult". +2017-11-13 12:41:23.774 +05:30 [Information] Executing HttpStatusCodeResult, setting HTTP status code 400 +2017-11-13 12:41:23.794 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.MediaController.Get (Api.Socioboard)" with arguments (["RATFBY62U1.mp4"]) - ModelState is Valid +2017-11-13 12:41:23.794 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.MediaController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.BadRequestResult". +2017-11-13 12:41:23.797 +05:30 [Information] Executed action "Api.Socioboard.Controllers.MediaController.Get (Api.Socioboard)" in 3117.1574ms +2017-11-13 12:41:23.797 +05:30 [Information] Executing HttpStatusCodeResult, setting HTTP status code 400 +2017-11-13 12:41:23.800 +05:30 [Information] Request finished in 3130.0658ms 400 +2017-11-13 12:41:23.800 +05:30 [Information] Executed action "Api.Socioboard.Controllers.MediaController.Get (Api.Socioboard)" in 3120.8027ms +2017-11-13 12:41:23.800 +05:30 [Debug] Connection id ""0HL9ABB7259MM"" completed keep alive response. +2017-11-13 12:41:23.805 +05:30 [Information] Request finished in 3134.7558ms 400 +2017-11-13 12:41:23.805 +05:30 [Debug] Connection id ""0HL9ABB7259ML"" completed keep alive response. +2017-11-13 12:41:23.810 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Media/get?id=F7MY4F0MX7.jpg +2017-11-13 12:41:23.811 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Media/Get"'. +2017-11-13 12:41:23.811 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.MediaController.Get (Api.Socioboard)" +2017-11-13 12:41:23.872 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.MediaController.Get (Api.Socioboard)" with arguments (["J56LNEQQUU.mp4"]) - ModelState is Valid +2017-11-13 12:41:23.873 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.MediaController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.BadRequestResult". +2017-11-13 12:41:23.874 +05:30 [Information] Executing HttpStatusCodeResult, setting HTTP status code 400 +2017-11-13 12:41:23.875 +05:30 [Information] Executed action "Api.Socioboard.Controllers.MediaController.Get (Api.Socioboard)" in 2112.46ms +2017-11-13 12:41:23.876 +05:30 [Information] Request finished in 2135.4658ms 400 +2017-11-13 12:41:23.877 +05:30 [Debug] Connection id ""0HL9ABB7259MK"" completed keep alive response. +2017-11-13 12:41:23.881 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Media/get?id=5ORQXXSTZ9.jpg +2017-11-13 12:41:23.882 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Media/Get"'. +2017-11-13 12:41:23.882 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.MediaController.Get (Api.Socioboard)" +2017-11-13 12:41:24.866 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.MediaController.Get (Api.Socioboard)" with arguments (["ZVP8TJEQ7Q.mp4"]) - ModelState is Valid +2017-11-13 12:41:24.868 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.MediaController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.BadRequestResult". +2017-11-13 12:41:24.869 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.MediaController.Get (Api.Socioboard)" with arguments (["9LYVENPITI.mp4"]) - ModelState is Valid +2017-11-13 12:41:24.869 +05:30 [Information] Executing HttpStatusCodeResult, setting HTTP status code 400 +2017-11-13 12:41:24.869 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.MediaController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.BadRequestResult". +2017-11-13 12:41:24.892 +05:30 [Information] Executed action "Api.Socioboard.Controllers.MediaController.Get (Api.Socioboard)" in 3090.2587ms +2017-11-13 12:41:24.893 +05:30 [Information] Executing HttpStatusCodeResult, setting HTTP status code 400 +2017-11-13 12:41:24.916 +05:30 [Information] Executed action "Api.Socioboard.Controllers.MediaController.Get (Api.Socioboard)" in 3138.0892ms +2017-11-13 12:41:24.917 +05:30 [Information] Request finished in 3139.0259ms 400 +2017-11-13 12:41:24.919 +05:30 [Debug] Connection id ""0HL9ABB7259MJ"" completed keep alive response. +2017-11-13 12:41:24.923 +05:30 [Information] Request finished in 3170.1873ms 400 +2017-11-13 12:41:24.923 +05:30 [Debug] Connection id ""0HL9ABB7259MH"" completed keep alive response. +2017-11-13 12:41:24.928 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Media/getUserImages?id=1LYMPX2AEK.jpg +2017-11-13 12:41:24.928 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Media/getUserImages?id=GGD18FG8GQ.jpg +2017-11-13 12:41:24.929 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Media/GetUserImages"'. +2017-11-13 12:41:24.929 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.MediaController.GetUserImages (Api.Socioboard)" +2017-11-13 12:41:24.929 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Media/GetUserImages"'. +2017-11-13 12:41:24.930 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.MediaController.GetUserImages (Api.Socioboard)" +2017-11-13 12:41:25.283 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Media/getUserImages?id=IGDI23C8LB.jpg +2017-11-13 12:41:25.283 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Media/GetUserImages"'. +2017-11-13 12:41:25.284 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.MediaController.GetUserImages (Api.Socioboard)" +2017-11-13 12:41:26.664 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Media/getUserImages?id=MNDY1WGK63.jpg +2017-11-13 12:41:26.665 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Media/GetUserImages"'. +2017-11-13 12:41:26.672 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.MediaController.GetUserImages (Api.Socioboard)" +2017-11-13 12:41:26.916 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.MediaController.Get (Api.Socioboard)" with arguments (["F7MY4F0MX7.jpg"]) - ModelState is Valid +2017-11-13 12:41:26.917 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.MediaController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.BadRequestResult". +2017-11-13 12:41:26.918 +05:30 [Information] Executing HttpStatusCodeResult, setting HTTP status code 400 +2017-11-13 12:41:26.919 +05:30 [Information] Executed action "Api.Socioboard.Controllers.MediaController.Get (Api.Socioboard)" in 3106.7421ms +2017-11-13 12:41:26.921 +05:30 [Information] Request finished in 3111.1457ms 400 +2017-11-13 12:41:26.921 +05:30 [Debug] Connection id ""0HL9ABB7259MI"" completed keep alive response. +2017-11-13 12:41:26.926 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Media/getUserImages?id=K16P4ZUIYD.jpg +2017-11-13 12:41:26.927 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Media/GetUserImages"'. +2017-11-13 12:41:26.928 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.MediaController.GetUserImages (Api.Socioboard)" +2017-11-13 12:41:27.016 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.MediaController.GetUserImages (Api.Socioboard)" with arguments (["GGD18FG8GQ.jpg"]) - ModelState is Valid +2017-11-13 12:41:27.017 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.MediaController.GetUserImages (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.BadRequestResult". +2017-11-13 12:41:27.018 +05:30 [Information] Executing HttpStatusCodeResult, setting HTTP status code 400 +2017-11-13 12:41:27.019 +05:30 [Information] Executed action "Api.Socioboard.Controllers.MediaController.GetUserImages (Api.Socioboard)" in 2089.1708ms +2017-11-13 12:41:27.020 +05:30 [Information] Request finished in 2093.0805ms 400 +2017-11-13 12:41:27.021 +05:30 [Debug] Connection id ""0HL9ABB7259MK"" completed keep alive response. +2017-11-13 12:41:27.970 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.MediaController.GetUserImages (Api.Socioboard)" with arguments (["1LYMPX2AEK.jpg"]) - ModelState is Valid +2017-11-13 12:41:27.970 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.MediaController.GetUserImages (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.BadRequestResult". +2017-11-13 12:41:27.972 +05:30 [Information] Executing HttpStatusCodeResult, setting HTTP status code 400 +2017-11-13 12:41:27.973 +05:30 [Information] Executed action "Api.Socioboard.Controllers.MediaController.GetUserImages (Api.Socioboard)" in 3041.7039ms +2017-11-13 12:41:27.975 +05:30 [Information] Request finished in 3047.9222ms 400 +2017-11-13 12:41:27.975 +05:30 [Debug] Connection id ""0HL9ABB7259ML"" completed keep alive response. +2017-11-13 12:41:28.696 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.MediaController.GetUserImages (Api.Socioboard)" with arguments (["IGDI23C8LB.jpg"]) - ModelState is Valid +2017-11-13 12:41:28.697 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.MediaController.GetUserImages (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.BadRequestResult". +2017-11-13 12:41:28.699 +05:30 [Information] Executing HttpStatusCodeResult, setting HTTP status code 400 +2017-11-13 12:41:28.701 +05:30 [Information] Executed action "Api.Socioboard.Controllers.MediaController.GetUserImages (Api.Socioboard)" in 3415.883ms +2017-11-13 12:41:28.704 +05:30 [Information] Request finished in 3420.5649ms 400 +2017-11-13 12:41:28.704 +05:30 [Debug] Connection id ""0HL9ABB7259MJ"" completed keep alive response. +2017-11-13 12:41:29.743 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.MediaController.GetUserImages (Api.Socioboard)" with arguments (["MNDY1WGK63.jpg"]) - ModelState is Valid +2017-11-13 12:41:29.745 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.MediaController.GetUserImages (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-11-13 12:41:29.745 +05:30 [Debug] No information found on request to perform content negotiation. +2017-11-13 12:41:29.746 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StreamOutputFormatter"' and content type '""' to write the response. +2017-11-13 12:41:29.747 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-11-13 12:41:29.754 +05:30 [Information] Executed action "Api.Socioboard.Controllers.MediaController.GetUserImages (Api.Socioboard)" in 3077.1699ms +2017-11-13 12:41:29.761 +05:30 [Information] Request finished in 3097.1015ms 200 +2017-11-13 12:41:29.762 +05:30 [Debug] Connection id ""0HL9ABB7259MH"" completed keep alive response. +2017-11-13 12:41:30.018 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.MediaController.GetUserImages (Api.Socioboard)" with arguments (["K16P4ZUIYD.jpg"]) - ModelState is Valid +2017-11-13 12:41:30.019 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.MediaController.GetUserImages (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-11-13 12:41:30.019 +05:30 [Debug] No information found on request to perform content negotiation. +2017-11-13 12:41:30.020 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StreamOutputFormatter"' and content type '""' to write the response. +2017-11-13 12:41:30.021 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-11-13 12:41:30.079 +05:30 [Information] Executed action "Api.Socioboard.Controllers.MediaController.GetUserImages (Api.Socioboard)" in 3150.4589ms +2017-11-13 12:41:30.083 +05:30 [Information] Request finished in 3157.1399ms 200 +2017-11-13 12:41:30.084 +05:30 [Debug] Connection id ""0HL9ABB7259MI"" completed keep alive response. +2017-11-13 12:41:31.051 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.MediaController.Get (Api.Socioboard)" with arguments (["5ORQXXSTZ9.jpg"]) - ModelState is Valid +2017-11-13 12:41:31.052 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.MediaController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.BadRequestResult". +2017-11-13 12:41:31.053 +05:30 [Information] Executing HttpStatusCodeResult, setting HTTP status code 400 +2017-11-13 12:41:31.054 +05:30 [Information] Executed action "Api.Socioboard.Controllers.MediaController.Get (Api.Socioboard)" in 7170.0598ms +2017-11-13 12:41:31.056 +05:30 [Information] Request finished in 7173.9371ms 400 +2017-11-13 12:41:31.056 +05:30 [Debug] Connection id ""0HL9ABB7259MM"" completed keep alive response. +2017-11-13 12:42:06.444 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-11-13 12:42:06.444 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-11-13 12:42:06.445 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-11-13 12:42:09.493 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d525b71d26ee26"]) - ModelState is Valid +2017-11-13 12:42:11.570 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-11-13 12:42:11.570 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-11-13 12:42:11.571 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-11-13 12:42:11.574 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 5126.5063ms +2017-11-13 12:42:11.579 +05:30 [Information] Request finished in 5134.228ms 200 application/json; charset=utf-8 +2017-11-13 12:42:11.579 +05:30 [Debug] Connection id ""0HL9ABB7259MK"" completed keep alive response. +2017-11-13 12:42:11.589 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-11-13 12:42:11.589 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-11-13 12:42:11.589 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-11-13 12:42:14.667 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d525b71d26ee26"]) - ModelState is Valid +2017-11-13 12:42:15.751 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-11-13 12:42:15.752 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-11-13 12:42:15.753 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-11-13 12:42:15.769 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 4164.2642ms +2017-11-13 12:42:15.799 +05:30 [Information] Request finished in 4198.7086ms 200 application/json; charset=utf-8 +2017-11-13 12:42:15.799 +05:30 [Debug] Connection id ""0HL9ABB7259ML"" completed keep alive response. +2017-11-13 12:42:15.850 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId=48 +2017-11-13 12:42:15.850 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-11-13 12:42:15.851 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-11-13 12:42:18.886 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", "48"]) - ModelState is Valid +2017-11-13 12:42:20.504 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-11-13 12:42:20.504 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-11-13 12:42:20.505 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-11-13 12:42:20.506 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4654.4261ms +2017-11-13 12:42:20.509 +05:30 [Information] Request finished in 4675.2328ms 200 application/json; charset=utf-8 +2017-11-13 12:42:20.509 +05:30 [Debug] Connection id ""0HL9ABB7259MJ"" completed keep alive response. +2017-11-13 12:42:21.530 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-11-13 12:42:21.531 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-11-13 12:42:21.531 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-11-13 12:42:21.534 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-11-13 12:42:21.535 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-11-13 12:42:21.536 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-11-13 12:42:21.537 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-11-13 12:42:21.537 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-11-13 12:42:21.539 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-11-13 12:42:21.633 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-11-13 12:42:21.633 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-11-13 12:42:21.634 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-11-13 12:42:24.613 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-11-13 12:42:24.633 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-11-13 12:42:24.673 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-11-13 12:42:25.585 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-11-13 12:42:25.762 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-11-13 12:42:25.762 +05:30 [Debug] No information found on request to perform content negotiation. +2017-11-13 12:42:25.763 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-11-13 12:42:25.763 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-11-13 12:42:25.765 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 4232.0054ms +2017-11-13 12:42:25.767 +05:30 [Information] Request finished in 4259.407ms 200 application/json; charset=utf-8 +2017-11-13 12:42:25.768 +05:30 [Debug] Connection id ""0HL9ABB7259MH"" completed keep alive response. +2017-11-13 12:42:26.830 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-11-13 12:42:26.830 +05:30 [Debug] No information found on request to perform content negotiation. +2017-11-13 12:42:26.830 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-11-13 12:42:26.831 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-11-13 12:42:26.832 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 5296.2402ms +2017-11-13 12:42:26.835 +05:30 [Information] Request finished in 5305.502ms 200 application/json; charset=utf-8 +2017-11-13 12:42:26.835 +05:30 [Debug] Connection id ""0HL9ABB7259MM"" completed keep alive response. +2017-11-13 12:42:26.949 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-11-13 12:42:26.950 +05:30 [Debug] No information found on request to perform content negotiation. +2017-11-13 12:42:26.950 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-11-13 12:42:26.951 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-11-13 12:42:26.952 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 5411.9876ms +2017-11-13 12:42:26.954 +05:30 [Information] Request finished in 5446.0815ms 200 application/json; charset=utf-8 +2017-11-13 12:42:26.954 +05:30 [Debug] Connection id ""0HL9ABB7259MI"" completed keep alive response. +2017-11-13 12:42:28.143 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-11-13 12:42:28.144 +05:30 [Debug] No information found on request to perform content negotiation. +2017-11-13 12:42:28.144 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-11-13 12:42:28.145 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-11-13 12:42:28.147 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 6511.1695ms +2017-11-13 12:42:28.149 +05:30 [Information] Request finished in 6516.2246ms 200 application/json; charset=utf-8 +2017-11-13 12:42:28.149 +05:30 [Debug] Connection id ""0HL9ABB7259MK"" completed keep alive response. +2017-11-13 12:42:58.993 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-11-13 12:42:58.993 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-11-13 12:42:58.994 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-11-13 12:43:02.071 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d525b71d26ee26"]) - ModelState is Valid +2017-11-13 12:43:02.653 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-11-13 12:43:02.653 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-11-13 12:43:02.655 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-11-13 12:43:02.656 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3661.5771ms +2017-11-13 12:43:02.659 +05:30 [Information] Request finished in 3668.6177ms 200 application/json; charset=utf-8 +2017-11-13 12:43:02.660 +05:30 [Debug] Connection id ""0HL9ABB7259ML"" completed keep alive response. +2017-11-13 12:43:02.669 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-11-13 12:43:02.670 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-11-13 12:43:02.670 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-11-13 12:43:05.729 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d525b71d26ee26"]) - ModelState is Valid +2017-11-13 12:43:06.830 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-11-13 12:43:06.830 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-11-13 12:43:06.832 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-11-13 12:43:06.833 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 4161.3395ms +2017-11-13 12:43:06.836 +05:30 [Information] Request finished in 4166.9877ms 200 application/json; charset=utf-8 +2017-11-13 12:43:06.837 +05:30 [Debug] Connection id ""0HL9ABB7259MJ"" completed keep alive response. +2017-11-13 12:43:06.842 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId=48 +2017-11-13 12:43:06.843 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-11-13 12:43:06.843 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-11-13 12:43:09.900 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", "48"]) - ModelState is Valid +2017-11-13 12:43:11.603 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-11-13 12:43:11.604 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-11-13 12:43:11.605 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-11-13 12:43:11.607 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4762.8159ms +2017-11-13 12:43:11.611 +05:30 [Information] Request finished in 4768.6082ms 200 application/json; charset=utf-8 +2017-11-13 12:43:11.611 +05:30 [Debug] Connection id ""0HL9ABB7259MH"" completed keep alive response. +2017-11-13 12:43:12.474 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-11-13 12:43:12.474 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-11-13 12:43:12.474 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-11-13 12:43:12.475 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-11-13 12:43:12.475 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-11-13 12:43:12.475 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-11-13 12:43:12.478 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-11-13 12:43:12.478 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-11-13 12:43:12.481 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-11-13 12:43:12.559 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-11-13 12:43:12.560 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-11-13 12:43:12.560 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-11-13 12:43:15.586 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-11-13 12:43:15.594 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-11-13 12:43:15.637 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-11-13 12:43:15.652 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-11-13 12:43:16.240 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-11-13 12:43:16.240 +05:30 [Debug] No information found on request to perform content negotiation. +2017-11-13 12:43:16.241 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-11-13 12:43:16.242 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-11-13 12:43:16.244 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 3759.913ms +2017-11-13 12:43:16.247 +05:30 [Information] Request finished in 3793.6181ms 200 application/json; charset=utf-8 +2017-11-13 12:43:16.248 +05:30 [Debug] Connection id ""0HL9ABB7259MM"" completed keep alive response. +2017-11-13 12:43:16.291 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-11-13 12:43:16.292 +05:30 [Debug] No information found on request to perform content negotiation. +2017-11-13 12:43:16.292 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-11-13 12:43:16.292 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-11-13 12:43:16.293 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3816.7907ms +2017-11-13 12:43:16.295 +05:30 [Information] Request finished in 3841.6278ms 200 application/json; charset=utf-8 +2017-11-13 12:43:16.295 +05:30 [Debug] Connection id ""0HL9ABB7259MI"" completed keep alive response. +2017-11-13 12:43:16.638 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-11-13 12:43:16.639 +05:30 [Debug] No information found on request to perform content negotiation. +2017-11-13 12:43:16.640 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-11-13 12:43:16.641 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-11-13 12:43:16.643 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 4166.7793ms +2017-11-13 12:43:16.647 +05:30 [Information] Request finished in 4194.1685ms 200 application/json; charset=utf-8 +2017-11-13 12:43:16.648 +05:30 [Debug] Connection id ""0HL9ABB7259MK"" completed keep alive response. +2017-11-13 12:43:16.882 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-11-13 12:43:16.883 +05:30 [Debug] No information found on request to perform content negotiation. +2017-11-13 12:43:16.883 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-11-13 12:43:16.884 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-11-13 12:43:16.886 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 4324.5475ms +2017-11-13 12:43:16.890 +05:30 [Information] Request finished in 4333.0859ms 200 application/json; charset=utf-8 +2017-11-13 12:43:16.890 +05:30 [Debug] Connection id ""0HL9ABB7259ML"" completed keep alive response. +2017-11-13 12:43:54.737 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-11-13 12:43:54.739 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-11-13 12:43:54.739 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-11-13 12:43:57.794 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d525b71d26ee26"]) - ModelState is Valid +2017-11-13 12:43:58.333 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-11-13 12:43:58.334 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-11-13 12:43:58.335 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-11-13 12:43:58.337 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3596.7541ms +2017-11-13 12:43:58.340 +05:30 [Information] Request finished in 3602.8548ms 200 application/json; charset=utf-8 +2017-11-13 12:43:58.341 +05:30 [Debug] Connection id ""0HL9ABB7259MJ"" completed keep alive response. +2017-11-13 12:43:58.348 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-11-13 12:43:58.349 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-11-13 12:43:58.350 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-11-13 12:44:01.398 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d525b71d26ee26"]) - ModelState is Valid +2017-11-13 12:44:02.499 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-11-13 12:44:02.500 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-11-13 12:44:02.501 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-11-13 12:44:02.503 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 4149.3582ms +2017-11-13 12:44:02.506 +05:30 [Information] Request finished in 4157.4254ms 200 application/json; charset=utf-8 +2017-11-13 12:44:02.507 +05:30 [Debug] Connection id ""0HL9ABB7259MH"" completed keep alive response. +2017-11-13 12:44:02.512 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId=48 +2017-11-13 12:44:02.512 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-11-13 12:44:02.513 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-11-13 12:44:05.540 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", "48"]) - ModelState is Valid +2017-11-13 12:44:07.233 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-11-13 12:44:07.234 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-11-13 12:44:07.235 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-11-13 12:44:07.239 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4723.28ms +2017-11-13 12:44:07.244 +05:30 [Information] Request finished in 4731.764ms 200 application/json; charset=utf-8 +2017-11-13 12:44:07.244 +05:30 [Debug] Connection id ""0HL9ABB7259MM"" completed keep alive response. +2017-11-13 12:44:08.135 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-11-13 12:44:08.136 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-11-13 12:44:08.136 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-11-13 12:44:08.136 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-11-13 12:44:08.137 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-11-13 12:44:08.138 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-11-13 12:44:08.143 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-11-13 12:44:08.144 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-11-13 12:44:08.144 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-11-13 12:44:08.245 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-11-13 12:44:08.246 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-11-13 12:44:08.249 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-11-13 12:44:10.348 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-11-13 12:44:11.327 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-11-13 12:44:11.351 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-11-13 12:44:11.367 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-11-13 12:44:11.545 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-11-13 12:44:11.545 +05:30 [Debug] No information found on request to perform content negotiation. +2017-11-13 12:44:11.545 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-11-13 12:44:11.547 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-11-13 12:44:11.548 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 3298.2994ms +2017-11-13 12:44:11.551 +05:30 [Information] Request finished in 3307.0577ms 200 application/json; charset=utf-8 +2017-11-13 12:44:11.552 +05:30 [Debug] Connection id ""0HL9ABB7259MJ"" completed keep alive response. +2017-11-13 12:44:11.901 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-11-13 12:44:11.901 +05:30 [Debug] No information found on request to perform content negotiation. +2017-11-13 12:44:11.902 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-11-13 12:44:11.903 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-11-13 12:44:11.905 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 3766.6659ms +2017-11-13 12:44:11.911 +05:30 [Information] Request finished in 3775.2298ms 200 application/json; charset=utf-8 +2017-11-13 12:44:11.912 +05:30 [Debug] Connection id ""0HL9ABB7259MI"" completed keep alive response. +2017-11-13 12:44:12.064 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-11-13 12:44:12.064 +05:30 [Debug] No information found on request to perform content negotiation. +2017-11-13 12:44:12.064 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-11-13 12:44:12.065 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-11-13 12:44:12.066 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3920.7101ms +2017-11-13 12:44:12.069 +05:30 [Information] Request finished in 3936.3566ms 200 application/json; charset=utf-8 +2017-11-13 12:44:12.070 +05:30 [Debug] Connection id ""0HL9ABB7259MK"" completed keep alive response. +2017-11-13 12:44:12.492 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-11-13 12:44:12.492 +05:30 [Debug] No information found on request to perform content negotiation. +2017-11-13 12:44:12.492 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-11-13 12:44:12.493 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-11-13 12:44:12.494 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 4354.533ms +2017-11-13 12:44:12.496 +05:30 [Information] Request finished in 4363.0639ms 200 application/json; charset=utf-8 +2017-11-13 12:44:12.496 +05:30 [Debug] Connection id ""0HL9ABB7259ML"" completed keep alive response. +2017-11-13 12:44:37.303 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-11-13 12:44:37.304 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-11-13 12:44:37.304 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-11-13 12:44:40.348 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d525b71d26ee26"]) - ModelState is Valid +2017-11-13 12:44:40.875 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-11-13 12:44:40.876 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-11-13 12:44:40.877 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-11-13 12:44:40.879 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3573.3766ms +2017-11-13 12:44:40.884 +05:30 [Information] Request finished in 3581.5135ms 200 application/json; charset=utf-8 +2017-11-13 12:44:40.884 +05:30 [Debug] Connection id ""0HL9ABB7259MH"" completed keep alive response. +2017-11-13 12:44:40.895 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-11-13 12:44:40.896 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-11-13 12:44:40.896 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-11-13 12:44:43.914 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d525b71d26ee26"]) - ModelState is Valid +2017-11-13 12:44:45.026 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-11-13 12:44:45.026 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-11-13 12:44:45.027 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-11-13 12:44:45.028 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 4131.5222ms +2017-11-13 12:44:45.030 +05:30 [Information] Request finished in 4135.7314ms 200 application/json; charset=utf-8 +2017-11-13 12:44:45.030 +05:30 [Debug] Connection id ""0HL9ABB7259MM"" completed keep alive response. +2017-11-13 12:44:45.036 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=48&groupId=48 +2017-11-13 12:44:45.036 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-11-13 12:44:45.037 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-11-13 12:44:48.095 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["48", "48"]) - ModelState is Valid +2017-11-13 12:44:49.753 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-11-13 12:44:49.754 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-11-13 12:44:49.755 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-11-13 12:44:49.757 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4717.6346ms +2017-11-13 12:44:49.759 +05:30 [Information] Request finished in 4722.4926ms 200 application/json; charset=utf-8 +2017-11-13 12:44:49.759 +05:30 [Debug] Connection id ""0HL9ABB7259MJ"" completed keep alive response. +2017-11-13 12:44:50.709 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=48 +2017-11-13 12:44:50.713 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-11-13 12:44:50.713 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Notifications/FindNotifications?userId=48 +2017-11-13 12:44:50.714 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-11-13 12:44:50.714 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Notifications/FindNotifications"'. +2017-11-13 12:44:50.717 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" +2017-11-13 12:44:50.720 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=48 +2017-11-13 12:44:50.722 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-11-13 12:44:50.723 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-11-13 12:44:50.798 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=48&userId=48 +2017-11-13 12:44:50.799 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-11-13 12:44:50.799 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-11-13 12:44:52.907 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-11-13 12:44:53.780 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-11-13 12:44:53.794 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-11-13 12:44:53.859 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" with arguments (["48"]) - ModelState is Valid +2017-11-13 12:44:54.157 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-11-13 12:44:54.158 +05:30 [Debug] No information found on request to perform content negotiation. +2017-11-13 12:44:54.158 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-11-13 12:44:54.159 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-11-13 12:44:54.160 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 3359.8578ms +2017-11-13 12:44:54.162 +05:30 [Information] Request finished in 3365.2833ms 200 application/json; charset=utf-8 +2017-11-13 12:44:54.162 +05:30 [Debug] Connection id ""0HL9ABB7259MH"" completed keep alive response. +2017-11-13 12:44:54.446 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-11-13 12:44:54.447 +05:30 [Debug] No information found on request to perform content negotiation. +2017-11-13 12:44:54.447 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-11-13 12:44:54.448 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-11-13 12:44:54.449 +05:30 [Information] Executed action "Api.Socioboard.Controllers.NotificationsController.FindNotifications (Api.Socioboard)" in 3728.5759ms +2017-11-13 12:44:54.451 +05:30 [Information] Request finished in 3740.8069ms 200 application/json; charset=utf-8 +2017-11-13 12:44:54.452 +05:30 [Debug] Connection id ""0HL9ABB7259ML"" completed keep alive response. +2017-11-13 12:44:54.511 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-11-13 12:44:54.512 +05:30 [Debug] No information found on request to perform content negotiation. +2017-11-13 12:44:54.512 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-11-13 12:44:54.513 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-11-13 12:44:54.514 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3761.0973ms +2017-11-13 12:44:54.516 +05:30 [Information] Request finished in 3812.375ms 200 application/json; charset=utf-8 +2017-11-13 12:44:54.517 +05:30 [Debug] Connection id ""0HL9ABB7259MI"" completed keep alive response. +2017-11-13 12:44:54.971 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-11-13 12:44:54.971 +05:30 [Debug] No information found on request to perform content negotiation. +2017-11-13 12:44:54.971 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-11-13 12:44:54.972 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-11-13 12:44:54.973 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 4257.796ms +2017-11-13 12:44:54.975 +05:30 [Information] Request finished in 4271.313ms 200 application/json; charset=utf-8 +2017-11-13 12:44:54.975 +05:30 [Debug] Connection id ""0HL9ABB7259MK"" completed keep alive response. +2017-11-13 12:47:24.553 +05:30 [Debug] Connection id ""0HL9ABB7259MM"" received FIN. +2017-11-13 12:47:24.553 +05:30 [Debug] Connection id ""0HL9ABB7259MJ"" received FIN. +2017-11-13 12:47:24.553 +05:30 [Debug] Connection id ""0HL9ABB7259MM"" disconnecting. +2017-11-13 12:47:24.553 +05:30 [Debug] Connection id ""0HL9ABB7259MH"" received FIN. +2017-11-13 12:47:24.554 +05:30 [Debug] Connection id ""0HL9ABB7259MM"" sending FIN. +2017-11-13 12:47:24.554 +05:30 [Debug] Connection id ""0HL9ABB7259ML"" received FIN. +2017-11-13 12:47:24.554 +05:30 [Debug] Connection id ""0HL9ABB7259MM"" sent FIN with status "0". +2017-11-13 12:47:24.555 +05:30 [Debug] Connection id ""0HL9ABB7259MJ"" disconnecting. +2017-11-13 12:47:24.557 +05:30 [Debug] Connection id ""0HL9ABB7259MJ"" sending FIN. +2017-11-13 12:47:24.557 +05:30 [Debug] Connection id ""0HL9ABB7259MH"" disconnecting. +2017-11-13 12:47:24.555 +05:30 [Debug] Connection id ""0HL9ABB7259MM"" stopped. +2017-11-13 12:47:24.558 +05:30 [Debug] Connection id ""0HL9ABB7259ML"" disconnecting. +2017-11-13 12:47:24.557 +05:30 [Debug] Connection id ""0HL9ABB7259MJ"" sent FIN with status "0". +2017-11-13 12:47:24.558 +05:30 [Debug] Connection id ""0HL9ABB7259MI"" received FIN. +2017-11-13 12:47:24.561 +05:30 [Debug] Connection id ""0HL9ABB7259MJ"" stopped. +2017-11-13 12:47:24.561 +05:30 [Debug] Connection id ""0HL9ABB7259MI"" disconnecting. +2017-11-13 12:47:24.561 +05:30 [Debug] Connection id ""0HL9ABB7259MH"" sending FIN. +2017-11-13 12:47:24.561 +05:30 [Debug] Connection id ""0HL9ABB7259MK"" received FIN. +2017-11-13 12:47:24.562 +05:30 [Debug] Connection id ""0HL9ABB7259ML"" sending FIN. +2017-11-13 12:47:24.562 +05:30 [Debug] Connection id ""0HL9ABB7259MI"" sending FIN. +2017-11-13 12:47:24.562 +05:30 [Debug] Connection id ""0HL9ABB7259ML"" sent FIN with status "0". +2017-11-13 12:47:24.562 +05:30 [Debug] Connection id ""0HL9ABB7259MK"" disconnecting. +2017-11-13 12:47:24.562 +05:30 [Debug] Connection id ""0HL9ABB7259ML"" stopped. +2017-11-13 12:47:24.562 +05:30 [Debug] Connection id ""0HL9ABB7259MI"" sent FIN with status "0". +2017-11-13 12:47:24.563 +05:30 [Debug] Connection id ""0HL9ABB7259MH"" sent FIN with status "0". +2017-11-13 12:47:24.563 +05:30 [Debug] Connection id ""0HL9ABB7259MI"" stopped. +2017-11-13 12:47:24.563 +05:30 [Debug] Connection id ""0HL9ABB7259MH"" stopped. +2017-11-13 12:47:24.563 +05:30 [Debug] Connection id ""0HL9ABB7259MK"" sending FIN. +2017-11-13 12:47:24.564 +05:30 [Debug] Connection id ""0HL9ABB7259MK"" sent FIN with status "0". +2017-11-13 12:47:24.564 +05:30 [Debug] Connection id ""0HL9ABB7259MK"" stopped. diff --git a/src/Socioboard/Themes/Socioboard/Views/Home/Index.cshtml b/src/Socioboard/Themes/Socioboard/Views/Home/Index.cshtml index bd007b181..9b659e195 100644 --- a/src/Socioboard/Themes/Socioboard/Views/Home/Index.cshtml +++ b/src/Socioboard/Themes/Socioboard/Views/Home/Index.cshtml @@ -151,7 +151,7 @@ - + @**@ diff --git a/src/Socioboard/wwwroot/_references.js b/src/Socioboard/wwwroot/_references.js index 711c981f6..b89dfbad2 100644 --- a/src/Socioboard/wwwroot/_references.js +++ b/src/Socioboard/wwwroot/_references.js @@ -1,85 +1,40 @@ /// /// -/// -/// /// /// /// -/// /// -/// /// /// -/// /// /// -/// /// /// -/// -/// -/// /// /// -/// -/// -/// /// /// /// -/// -/// -/// -/// /// /// /// /// -/// -/// /// -/// /// /// /// -/// -/// -/// -/// -/// /// -/// -/// /// -/// -/// -/// -/// /// /// /// -/// -/// -/// /// /// /// -/// /// /// -/// -/// -/// -/// /// -/// /// -/// -/// -/// -/// -/// -/// /// /// /// @@ -154,7 +109,6 @@ /// /// /// -/// /// /// /// @@ -555,7 +509,6 @@ /// /// /// -/// /// /// /// @@ -784,13 +737,6 @@ /// /// /// -/// -/// -/// -/// -/// -/// -/// /// /// /// @@ -850,58 +796,20 @@ /// /// /// -/// -/// -/// -/// -/// /// -/// -/// -/// -/// -/// -/// -/// -/// -/// -/// /// /// /// /// /// /// -/// -/// -/// -/// -/// -/// -/// /// -/// /// -/// -/// -/// -/// -/// -/// -/// /// -/// /// /// /// /// -/// -/// -/// -/// -/// -/// -/// /// /// /// @@ -982,7 +890,7 @@ /// /// /// -/// +/// /// /// /// @@ -1039,7 +947,6 @@ /// /// /// -/// /// /// /// @@ -1109,16 +1016,7 @@ /// /// /// -/// /// -/// -/// -/// -/// -/// -/// -/// -/// /// /// /// @@ -1226,17 +1124,7 @@ /// /// /// -/// -/// -/// -/// -/// /// -/// -/// -/// -/// -/// /// /// /// @@ -1270,7 +1158,6 @@ /// /// /// -/// /// /// /// @@ -1278,25 +1165,11 @@ /// /// /// -/// -/// -/// -/// -/// -/// -/// -/// -/// -/// -/// /// /// -/// -/// /// /// /// /// /// /// -/// diff --git a/src/Socioboard/wwwroot/contents/socioboard/controllers/app.js b/src/Socioboard/wwwroot/contents/socioboard/controllers/app.js index 0139a4149..bb18e3b1e 100644 --- a/src/Socioboard/wwwroot/contents/socioboard/controllers/app.js +++ b/src/Socioboard/wwwroot/contents/socioboard/controllers/app.js @@ -310,9 +310,10 @@ SocioboardApp.controller('HeaderController', function ($rootScope, $scope, $http // end codes to load recent Feeds } - $scope.reloadFeeds = function () { - setTimeout(function () { $scope.LoadNotifications(); }, 1000); - } + //$scope.reloadFeeds = function () { + // setTimeout(function () { $scope.LoadNotifications(); }, 1000); + //} + $scope.getOnPageLoadGroups = function () { $scope.LoadNotifications(); @@ -670,6 +671,28 @@ SocioboardApp.config(['$stateProvider', '$urlRouterProvider', function ($statePr } }) // Discovery Suggestion + + // youtube search + .state('youtubesearch', { + url: "/youtubesearch", + templateUrl: "../contents/socioboard/views/discovery/youtubesearch.html", + data: { pageTitle: 'Youtube Search', pageSubTitle: 'updated' }, + controller: "YoutubeSearchController", + + resolve: { + deps: ['$ocLazyLoad', function ($ocLazyLoad) { + return $ocLazyLoad.load({ + name: 'SocioboardApp', + insertBefore: '#ng_load_plugins_before', // load the above css files before '#ng_load_plugins_before' + files: [ + '../contents/socioboard/js/admin/plugins.js', + '../contents/socioboard/controllers/youtubesearchcontroller.js' + ] + }); + }] + } + }) + // ur followers .state('your_followers', { url: "/your_followers/{profileId}", diff --git a/src/Socioboard/wwwroot/contents/socioboard/controllers/fbpagedetreportcontroller.js b/src/Socioboard/wwwroot/contents/socioboard/controllers/fbpagedetreportcontroller.js index 6b22f6081..f745c7160 100644 --- a/src/Socioboard/wwwroot/contents/socioboard/controllers/fbpagedetreportcontroller.js +++ b/src/Socioboard/wwwroot/contents/socioboard/controllers/fbpagedetreportcontroller.js @@ -149,8 +149,8 @@ SocioboardApp.controller('FbpagedetreportController', function ($rootScope, $sco else { sharingByAgeFemaleFollower = 0; } - $scope.fromDate = moment(new Date((startDate * 1000))).format('YYYY/MM/DD'); - $scope.toDate = moment(new Date((endDate * 1000))).format('YYYY/MM/DD'); + $scope.fromDate = new Date((startDate * 1000)); + $scope.toDate = new Date((endDate * 1000)); $scope.totalLikes = totalLikes; $scope.talkingAbout = talkingAbout; $scope.newFans = newFans; diff --git a/src/Socioboard/wwwroot/contents/socioboard/controllers/instagramreportcontroller.js b/src/Socioboard/wwwroot/contents/socioboard/controllers/instagramreportcontroller.js index 8044d623e..66af97ef3 100644 --- a/src/Socioboard/wwwroot/contents/socioboard/controllers/instagramreportcontroller.js +++ b/src/Socioboard/wwwroot/contents/socioboard/controllers/instagramreportcontroller.js @@ -392,7 +392,8 @@ SocioboardApp.controller('InstagramreportController', function ($rootScope, $sco } }); - + $scope.fromDate = new Date(startDate * 1000); + $scope.toDate = new Date(endDate * 1000); $scope.totalMedia = totalMedia; $scope.totalFollower = totalFollower; $scope.totalFollowing = totalFollowing; diff --git a/src/Socioboard/wwwroot/contents/socioboard/controllers/mostsharedcontroller.js b/src/Socioboard/wwwroot/contents/socioboard/controllers/mostsharedcontroller.js index 20a10c5a1..e05230bc7 100644 --- a/src/Socioboard/wwwroot/contents/socioboard/controllers/mostsharedcontroller.js +++ b/src/Socioboard/wwwroot/contents/socioboard/controllers/mostsharedcontroller.js @@ -46,11 +46,18 @@ SocioboardApp.controller('MostSharedController', function ($rootScope, $scope, $ var pageId = $('#shraeathonfacebookpage').val(); var timeInterval = $('#shraeathontimeinterval').val(); if (pageId == "") { - if (FacebookUrl == "") { - swal("please enter any facebook page url or select any facebook page"); - return false; - } + + swal("please select profile"); + return false; + } + if (timeInterval == null) { + + swal("please select time interval"); + return false; + + } + var formData = new FormData(); if (pageId != null && timeInterval != null) { @@ -60,9 +67,12 @@ SocioboardApp.controller('MostSharedController', function ($rootScope, $scope, $ var x=angular.toJson(sb); console.log("data"); console.log($scope.selectedContentfeed); + + + $scope.dispbtn = false; - + if (x != "[]") { formData.append('FacebookPageId', pageId); var shareData = $scope.datasharethon; formData.append('shareData', x); @@ -77,19 +87,23 @@ SocioboardApp.controller('MostSharedController', function ($rootScope, $scope, $ }, transformRequest: angular.identity, }).then(function (response) { - $scope.lstAdvSearhDataaa = response.data; - $scope.dispbtn = true; - $('#ShareathonModal').closeModal(); - closeModel(); - swal("successfully scheduled"); - }, function (reason) { - $scope.error = reason.data; - }); + $scope.lstAdvSearhDataaa = response.data; + $scope.dispbtn = true; + $('#ShareathonModal').closeModal(); + closeModel(); + swal("successfully scheduled"); + }, function (reason) { + $scope.error = reason.data; + }); + } + else{ + swal("Please select feeds to be schedule"); + } // end codes to add page shreathon } else { $scope.dispbtn = true; - swal('Please fill in all the details'); + swal('Please fill all the details'); } } diff --git a/src/Socioboard/wwwroot/contents/socioboard/controllers/rssnewscontroller.js b/src/Socioboard/wwwroot/contents/socioboard/controllers/rssnewscontroller.js index 753269f92..2b2e20238 100644 --- a/src/Socioboard/wwwroot/contents/socioboard/controllers/rssnewscontroller.js +++ b/src/Socioboard/wwwroot/contents/socioboard/controllers/rssnewscontroller.js @@ -340,7 +340,7 @@ SocioboardApp.controller('RssNewsController', function ($rootScope, $scope, $htt $scope.disbtncom = false; var profiles = new Array(); - $("#checkboxdatarss .subcheckboxrss").each(function () { + $("#checkboxdata .subcheckbox").each(function () { var attrId = $(this).attr("id"); if (document.getElementById(attrId).checked == false) { @@ -386,6 +386,7 @@ SocioboardApp.controller('RssNewsController', function ($rootScope, $scope, $htt $('#ComposePostModal').closeModal(); swal('Message composed successfully'); + } }, function (reason) { diff --git a/src/Socioboard/wwwroot/contents/socioboard/controllers/socioqueuecontroller.js b/src/Socioboard/wwwroot/contents/socioboard/controllers/socioqueuecontroller.js index 1c7a37f7b..0f5d4ce2d 100644 --- a/src/Socioboard/wwwroot/contents/socioboard/controllers/socioqueuecontroller.js +++ b/src/Socioboard/wwwroot/contents/socioboard/controllers/socioqueuecontroller.js @@ -89,6 +89,7 @@ SocioboardApp.controller('SocioqueueController', function ($rootScope, $scope, $ } $scope.savesocioqueueedit = function () { var message = $('#editScheduleMsg').val(); + if (/\S/.test(message)) { //For taking special character start var updatedmessage = ""; @@ -116,6 +117,7 @@ SocioboardApp.controller('SocioqueueController', function ($rootScope, $scope, $ else { swal("Please enter a text"); } + } diff --git a/src/Socioboard/wwwroot/contents/socioboard/controllers/trendingcontentcontroller.js b/src/Socioboard/wwwroot/contents/socioboard/controllers/trendingcontentcontroller.js index eab324c46..359ba5bf3 100644 --- a/src/Socioboard/wwwroot/contents/socioboard/controllers/trendingcontentcontroller.js +++ b/src/Socioboard/wwwroot/contents/socioboard/controllers/trendingcontentcontroller.js @@ -328,10 +328,16 @@ SocioboardApp.controller('TrendingContentController', function ($rootScope, $sco var pageId = $('#shraeathonfacebookpage').val(); var timeInterval = $('#shraeathontimeinterval').val(); if (pageId == "") { - if (FacebookUrl == "") { - swal("please enter any facebook page url or select any facebook page"); + + swal("please select profile"); return false; - } + + } + if (timeInterval == null) { + + swal("please select time interval"); + return false; + } var formData = new FormData(); if (pageId != null && timeInterval != null) { @@ -378,7 +384,7 @@ SocioboardApp.controller('TrendingContentController', function ($rootScope, $sco } else { $scope.dispbtn = true; - swal('Please fill all the details'); + swal('Please provide all details'); } } diff --git a/src/Socioboard/wwwroot/contents/socioboard/controllers/twitterreportscontroller.js b/src/Socioboard/wwwroot/contents/socioboard/controllers/twitterreportscontroller.js index 147756d30..830596638 100644 --- a/src/Socioboard/wwwroot/contents/socioboard/controllers/twitterreportscontroller.js +++ b/src/Socioboard/wwwroot/contents/socioboard/controllers/twitterreportscontroller.js @@ -404,8 +404,8 @@ SocioboardApp.controller('TwitterreportsController', function ($rootScope, $scop $scope.totalDirectMessagesSent = totalDirectMessagesSent; $scope.totalMessagesReceived = totalMessagesReceived; $scope.totalMessagesSent = totalMessagesSent; - //$scope.fromDate = moment(new Date((startDate * 1000))).format('YYYY/MM/DD'); - //$scope.toDate = moment(new Date((endDate * 1000))).format('YYYY/MM/DD'); + $scope.fromDate = new Date((startDate * 1000)); + $scope.toDate = new Date((endDate * 1000)); // $scope.generateGraph(days); } diff --git a/src/Socioboard/wwwroot/contents/socioboard/controllers/youtubesearchcontroller.js b/src/Socioboard/wwwroot/contents/socioboard/controllers/youtubesearchcontroller.js new file mode 100644 index 000000000..536efeae0 --- /dev/null +++ b/src/Socioboard/wwwroot/contents/socioboard/controllers/youtubesearchcontroller.js @@ -0,0 +1,110 @@ +'use strict'; + +SocioboardApp.controller('YoutubeSearchController', function ($rootScope, $scope, $http, $timeout, $stateParams, apiDomain, domain) { + //alert('helo'); + $scope.$on('$viewContentLoaded', function () { + $scope.limit = 10; + $scope.globaltokenpage = ""; + $scope.label = true; + $scope.keywordsearchkey = "Type keyword to search"; + $scope.loadmore = 'hide'; + $scope.loader = false; + $scope.openM = function (videoUrl, SearchType) { + $scope.urlEmbedded = videoUrl; + if (SearchType == 'video') { + $('#ComposePostModal').openModal(); + } + else { + alertify.error("This is not a video type"); + } + } + $scope.searchytdata = function (searchkeyword) { + if (!(searchkeyword == undefined || searchkeyword == "")) { + $scope.label = false; + $scope.searchdata = null; + $scope.loadmore = 'hide'; + $scope.loader = true; + $http.post(apiDomain + '/api/Discovery/YoutubeSearch?q=' + searchkeyword + '&page=' + 0) + .then(function (response) { + $scope.limit = 10; + if (response.data == "") { + $scope.loader = false; + $scope.label = true; + $scope.keywordsearchkey = "Sorry, No data available for this keyword"; + } + else { + $scope.tempQ = searchkeyword; + $scope.searchdata = response.data; + $scope.loadmore = 'show'; + $scope.loader = false; + + angular.forEach($scope.searchdata, function (item) { + $scope.globaltokenpage = item.pageCode; + }) + $scope.latesttokenpage = ""; + + + } + }, function (reason) { + $scope.error = reason.data; + }); + } + else { + alertify.error("Type any keyword to search data"); + } + } + $scope.limitClk = function () { + if ($scope.searchdata.length > $scope.limit) { + $scope.limit = $scope.limit + 7; + if (!($scope.searchdata.length > $scope.limit)) + { + $scope.loadmore = 'hide'; + } + } + else + { + $scope.loadmore = 'hide'; + } + } + + $scope.loadmoreextra=function() + { + $scope.searchytdatapage(); + } + + + + $scope.searchytdatapage = function () { + if ($scope.latesttokenpage != $scope.globaltokenpage) { + var tempglobal = $scope.globaltokenpage; + $http.post(apiDomain + '/api/Discovery/YoutubeSearch?q=' + $scope.tempQ + '&page=' + 1 + '&pagecode=' + tempglobal) + .then(function (response) { + if (response.data == "") { + } + else { + $scope.tempDataResponse = response.data; + $scope.searchdata = $scope.searchdata.concat(response.data); + angular.forEach($scope.tempDataResponse, function (item) { + $scope.globaltokenpage = item.pageCode; + }) + } + }, function (reason) { + $scope.error = reason.data; + }); + $scope.latesttokenpage = $scope.globaltokenpage; + } + + + } + + + + + }); +}) +.filter('youtubeEmbedUrl', function ($sce) { + debugger; + return function (videoId) { + return $sce.trustAsResourceUrl('https://www.youtube.com/embed/' + videoId); + }; +}); \ No newline at end of file diff --git a/src/Socioboard/wwwroot/contents/socioboard/views/boardme/boardlist.html b/src/Socioboard/wwwroot/contents/socioboard/views/boardme/boardlist.html index 08129ced0..43d83762e 100644 --- a/src/Socioboard/wwwroot/contents/socioboard/views/boardme/boardlist.html +++ b/src/Socioboard/wwwroot/contents/socioboard/views/boardme/boardlist.html @@ -27,13 +27,13 @@
{{$index +1}} {{board.bname}} - VIEW + VIEW - + - Delete + Delete diff --git a/src/Socioboard/wwwroot/contents/socioboard/views/dashboard/dashboard.html b/src/Socioboard/wwwroot/contents/socioboard/views/dashboard/dashboard.html index f716b534c..8b35e0b03 100644 --- a/src/Socioboard/wwwroot/contents/socioboard/views/dashboard/dashboard.html +++ b/src/Socioboard/wwwroot/contents/socioboard/views/dashboard/dashboard.html @@ -239,7 +239,7 @@
Oops!
You have no profiles
{{data['fbaccount']['fbUserName']}} -

Fans: {{data['fbaccount']['friends']}}

+

Fans: {{data['fbaccount']['friends']}}

Email Id: {{data['fbaccount']['emailId']}}

@@ -288,8 +288,8 @@
Oops!
You have no profiles
{{data['instaaccount']['insUserName']}} -

Followers: {{data['instaaccount']['followers']}}

-

Following: {{data['instaaccount']['followedBy']}}

+

Followers: {{data['instaaccount']['followers']}}

+

Following: {{data['instaaccount']['followedBy']}}

diff --git a/src/Socioboard/wwwroot/contents/socioboard/views/dashboard/index.html b/src/Socioboard/wwwroot/contents/socioboard/views/dashboard/index.html index 0ad13613a..f151d615c 100644 --- a/src/Socioboard/wwwroot/contents/socioboard/views/dashboard/index.html +++ b/src/Socioboard/wwwroot/contents/socioboard/views/dashboard/index.html @@ -110,7 +110,7 @@ - + diff --git a/src/Socioboard/wwwroot/contents/socioboard/views/dashboard/profiles.html b/src/Socioboard/wwwroot/contents/socioboard/views/dashboard/profiles.html index f684049a6..ade5524af 100644 --- a/src/Socioboard/wwwroot/contents/socioboard/views/dashboard/profiles.html +++ b/src/Socioboard/wwwroot/contents/socioboard/views/dashboard/profiles.html @@ -164,7 +164,7 @@
Oops!
You have no profiles
{{data['fbaccount']['fbUserName']}} -

Friends: {{data['fbaccount']['friends']}}

+

Friends: {{data['fbaccount']['friends']}}

Email Id: {{data['fbaccount']['emailId']}}

@@ -191,7 +191,7 @@
Oops!
You have no profiles
{{data['fbaccount']['fbUserName']}} -

Fans: {{data['fbaccount']['friends']}}

+

Fans: {{data['fbaccount']['friends']}}

Email Id: {{data['fbaccount']['emailId']}}

@@ -213,16 +213,16 @@
Oops!
You have no profiles
{{data['twtaccount']['twitterScreenName']}} -

Followers: {{data['twtaccount']['followersCount']}}

-

Following: {{data['twtaccount']['followingCount']}}

+

Followers: {{data['twtaccount']['followersCount']}}

+

Following: {{data['twtaccount']['followingCount']}}

{{data['twtaccount']['twitterScreenName']}}

{{data['twtaccount']['description']}}

Name: {{data['twtaccount']['twitterName']}}

Descriptions: {{data['twtaccount']['description']}}

-

Following: {{data['twtaccount']['followingCount']}}

-

followers: {{data['twtaccount']['followersCount']}}

+

Following: {{data['twtaccount']['followingCount']}}

+

followers: {{data['twtaccount']['followersCount']}}

@@ -240,8 +240,8 @@
Oops!
You have no profiles
{{data['instaaccount']['insUserName']}} -

Followers: {{data['instaaccount']['followers']}}

-

Following: {{data['instaaccount']['followedBy']}}

+

Followers: {{data['instaaccount']['followers']}}

+

Following: {{data['instaaccount']['followedBy']}}

@@ -249,7 +249,7 @@
Oops!
You have no profiles

{{data['instaaccount']['bio']}}

User Name: {{data['instaaccount']['insUserName']}}

Followers:{{data['instaaccount']['followers']}}

-

Following: {{data['instaaccount']['followedBy']}}

+

Following: {{data['instaaccount']['followedBy']}}

Total Posts: {{data['instaaccount']['totalImages']}}

@@ -268,15 +268,15 @@
Oops!
You have no profiles
{{data['gplusaccount']['gpUserName']}} -

Followers: {{data['gplusaccount']['haveYouInCircles']}}

+

Followers: {{data['gplusaccount']['haveYouInCircles']}}

Email Id: {{data['gplusaccount']['emailId']}}

{{data['gplusaccount']['gpUserName']}} -

Following: {{data['gplusaccount']['inYourCircles']}}

-

Followers:{{data['gplusaccount']['haveYouInCircles']}}

+

Following: {{data['gplusaccount']['inYourCircles']}}

+

Followers:{{data['gplusaccount']['haveYouInCircles']}}

Email Id:{{data['gplusaccount']['emailId']}}

Location: {{data['gplusaccount']['location']}}

@@ -297,16 +297,16 @@
Oops!
You have no profiles
{{data['gAaccount']['gaProfileName']}} -

Visits:{{data['gAaccount']['visits']}}

-

Views: {{data['gAaccount']['views']}}

+

Visits: {{data['gAaccount']['visits']}}

+

Views: {{data['gAaccount']['views']}}

{{data['gAaccount']['gaProfileName']}} -

Visits: {{data['gAaccount']['visits']}}

-

Views: {{data['gAaccount']['views']}}

-

Website URL: {{data['gAaccount']['websiteUrl']}}

+

Visits: {{data['gAaccount']['visits']}}

+

Views: {{data['gAaccount']['views']}}

+

Website URL: {{data['gAaccount']['websiteUrl']}}

followers: {{data['gAaccount']['haveYouInCircles']}}

-

Email Id: {{data['gAaccount']['gaProfileName']}}

+

Email Id: {{data['gAaccount']['gaProfileName']}}

@@ -350,8 +350,8 @@
Oops!
You have no profiles
{{data['linkdINcompanyaccount']['linkedinPageName']}} -

Followers: {{ldata['linkdINcompanyaccount']['numFollowers']}}

-

Location: {{data['linkdINcompanyaccount']['locations']}}

+

Followers: {{ldata['linkdINcompanyaccount']['numFollowers']}}

+

Location: {{data['linkdINcompanyaccount']['locations']}}

@@ -367,9 +367,9 @@
Oops!
You have no profiles
{{data['linkdINcompanyaccount']['linkedinPageName']}}

{{data['linkdINcompanyaccount']['specialties']}}

Page Name: {{data['linkdINcompanyaccount']['linkedinPageName']}}

-

Description: {{data['linkdINcompanyaccount']['description']}}

-

Location:{{data['linkdINcompanyaccount']['locations']}}

-

Followers:{{data['linkdINcompanyaccount']['numFollowers']}}

+

Description: {{data['linkdINcompanyaccount']['description']}}

+

Location:{{data['linkdINcompanyaccount']['locations']}}

+

Followers:{{data['linkdINcompanyaccount']['numFollowers']}}

@@ -388,8 +388,8 @@
Oops!
You have no profiles
{{data['linkdInaccount']['linkedinUserName']}} -

Followers: {{data['linkdInaccount']['connections']}}

-

Email: {{data['linkdInaccount']['emailId']}}

+

Followers: {{data['linkdInaccount']['connections']}}

+

Email: {{data['linkdInaccount']['emailId']}}

@@ -401,8 +401,8 @@
Oops!
You have no profiles
{{data['linkdInaccount']['linkedinUserName']}} -

Followers: {{data['linkdInaccount']['connections']}}

-

Following: {{data['linkdInaccount']['emailId']}}

+

Followers: {{data['linkdInaccount']['connections']}}

+

Following: {{data['linkdInaccount']['emailId']}}

@@ -412,8 +412,8 @@
Oops!
You have no profiles

Account Id: {{data['linkdInaccount']['linkedinUserId']}}

-

Name: {{data['linkdInaccount']['linkedinUserName']}}

-

EmailId:{{data['linkdInaccount']['emailId']}}

+

Name: {{data['linkdInaccount']['linkedinUserName']}}

+

EmailId:{{data['linkdInaccount']['emailId']}}

Connections:{{data['linkdInaccount']['connections']}}

diff --git a/src/Socioboard/wwwroot/contents/socioboard/views/design/design_feeds.html b/src/Socioboard/wwwroot/contents/socioboard/views/design/design_feeds.html index f96af6a7e..94439fec7 100644 --- a/src/Socioboard/wwwroot/contents/socioboard/views/design/design_feeds.html +++ b/src/Socioboard/wwwroot/contents/socioboard/views/design/design_feeds.html @@ -131,11 +131,11 @@

Categories Featured

-
+
diff --git a/src/Socioboard/wwwroot/contents/socioboard/views/design/design_linfeeds.html b/src/Socioboard/wwwroot/contents/socioboard/views/design/design_linfeeds.html index 8c3ef0455..cc1f93eea 100644 --- a/src/Socioboard/wwwroot/contents/socioboard/views/design/design_linfeeds.html +++ b/src/Socioboard/wwwroot/contents/socioboard/views/design/design_linfeeds.html @@ -242,11 +242,11 @@

Categories Featured

-
+
diff --git a/src/Socioboard/wwwroot/contents/socioboard/views/discovery/youtubesearch.html b/src/Socioboard/wwwroot/contents/socioboard/views/discovery/youtubesearch.html new file mode 100644 index 000000000..a136e5c7b --- /dev/null +++ b/src/Socioboard/wwwroot/contents/socioboard/views/discovery/youtubesearch.html @@ -0,0 +1,134 @@ +
+ +
+ +
+
+

Youtube Search

+
+
+
+
+ +
+
+
+ +
+
+
+ +
+ +
+ +
+ Load more +
+
+ + + + + +
+
+


+
+
+
+
+
+
+
+


+

{{keywordsearchkey}}

+
+ + +
+ + + + diff --git a/src/Socioboard/wwwroot/contents/socioboard/views/publishing/schedulemsg.html b/src/Socioboard/wwwroot/contents/socioboard/views/publishing/schedulemsg.html index 317603a93..50c1c8b4d 100644 --- a/src/Socioboard/wwwroot/contents/socioboard/views/publishing/schedulemsg.html +++ b/src/Socioboard/wwwroot/contents/socioboard/views/publishing/schedulemsg.html @@ -113,7 +113,7 @@

Schedule Message

  • --> +

    + Showing last 90 days report ({{fromDate | date}} - {{toDate | date}}) +

    @@ -32,216 +35,209 @@
    + + < + +
    -
    My Facebook Pages
    -
    -

    {{totalLikes}} Total Likes and {{talkingAbout}} people talking about this

    -

    New Fans {{newFans}} 'Unliked' Your Page {{unliked}}

    -
    +
    Total No. Of Fans
    -
    -
    --> - - < -
    -
    -
    Total No. Of Fans
    -
    -
    -
    - - +
    +
    + -
    -
    -
    - Total likes on daily basis -
    - -
    -
    -
    - - +
    --> +
    +
    +
    + Total likes on daily basis +
    + +
    +
    +
    + - - - - +
    --> + + + + + Chanchal + 100 + 100 + + + Chanchal + 100 + 100 + + + Chanchal + 100 + 100 + --> + + + - +
    +
    +
    PAGE IMPRESSIONS
    +

    Impressions {{impressions}} by {{usersBy}} Users

    +
    +
    +
    +
    --> - +
    +
    IMPRESSIONS BREAKDOWN
    +
    +
    +
    +
    --> - +
    +
    IMPRESSIONS BY AGE & GENDER
    +
    +
    --> + - - +
    + +
    9%
    + FEMALE FOLLOWERS +
    +
    +
    --> +
    +
    IMPRESSIONS BY LOCATION
    +
    +
    + --> - + - + - - + + - + + + --> +
    @@ -253,29 +249,29 @@
    +
    Facebookpage Profile Details
    + + --> - - + + - + - + + --> @@ -286,38 +282,38 @@
    Facebookpage Profile Details
    - +
    S.No.
    S.No. Name LikesCommentsComments Post Shares
    {{facebookpagepost.post}} {{facebookpagepost.shares}}
    - +
    -
    -









    -
    -
    -
    -
    -
    -
    -
    -
    -
    +
    +









    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    -
    -
    -
    Please wait for the Report data to be generated
    +
    +
    Please wait for the Report data to be generated
    +
    -
    -
    +
    diff --git a/src/Socioboard/wwwroot/contents/socioboard/views/reports/facebookpagereport.html b/src/Socioboard/wwwroot/contents/socioboard/views/reports/facebookpagereport.html index 8ad69d8d7..222aca559 100644 --- a/src/Socioboard/wwwroot/contents/socioboard/views/reports/facebookpagereport.html +++ b/src/Socioboard/wwwroot/contents/socioboard/views/reports/facebookpagereport.html @@ -13,10 +13,10 @@

    from {{fromDate}} to {{toDate}}

    - 15 - 30 - 60 - 90 + 15 + 30 + 60 + 90
    diff --git a/src/Socioboard/wwwroot/contents/socioboard/views/reports/facebookreport.html b/src/Socioboard/wwwroot/contents/socioboard/views/reports/facebookreport.html index 3dfd91793..3267128ea 100644 --- a/src/Socioboard/wwwroot/contents/socioboard/views/reports/facebookreport.html +++ b/src/Socioboard/wwwroot/contents/socioboard/views/reports/facebookreport.html @@ -13,10 +13,10 @@

    from {{fromDate}} to {{toDate}}

    - 15 - 30 - 60 - 90 + 15 + 30 + 60 + 90
    diff --git a/src/Socioboard/wwwroot/contents/socioboard/views/reports/googleanalyticsreport.html b/src/Socioboard/wwwroot/contents/socioboard/views/reports/googleanalyticsreport.html index 57e6c57ab..df9018cf8 100644 --- a/src/Socioboard/wwwroot/contents/socioboard/views/reports/googleanalyticsreport.html +++ b/src/Socioboard/wwwroot/contents/socioboard/views/reports/googleanalyticsreport.html @@ -13,10 +13,10 @@

    from {{fromDate}} to {{toDate}}

    - 15 - 30 - 60 - 90 + 15 + 30 + 60 + 90
    diff --git a/src/Socioboard/wwwroot/contents/socioboard/views/reports/groupreport.html b/src/Socioboard/wwwroot/contents/socioboard/views/reports/groupreport.html index 2bf11cd03..991c7594f 100644 --- a/src/Socioboard/wwwroot/contents/socioboard/views/reports/groupreport.html +++ b/src/Socioboard/wwwroot/contents/socioboard/views/reports/groupreport.html @@ -7,10 +7,10 @@

    from {{fromDate}} to {{toDate}}

    - 15 - 30 - 60 - 90 + 15 + 30 + 60 + 90
    diff --git a/src/Socioboard/wwwroot/contents/socioboard/views/reports/instagramcustomreport.html b/src/Socioboard/wwwroot/contents/socioboard/views/reports/instagramcustomreport.html index e8a5e42fb..ad52b3f40 100644 --- a/src/Socioboard/wwwroot/contents/socioboard/views/reports/instagramcustomreport.html +++ b/src/Socioboard/wwwroot/contents/socioboard/views/reports/instagramcustomreport.html @@ -13,10 +13,10 @@

    from {{fromDate}} to {{toDate}}

    - 15 - 30 - 60 - 90 + 15 + 30 + 60 + 90
    diff --git a/src/Socioboard/wwwroot/contents/socioboard/views/reports/instagramreport.html b/src/Socioboard/wwwroot/contents/socioboard/views/reports/instagramreport.html index 3260731c0..7a2e68ea4 100644 --- a/src/Socioboard/wwwroot/contents/socioboard/views/reports/instagramreport.html +++ b/src/Socioboard/wwwroot/contents/socioboard/views/reports/instagramreport.html @@ -11,6 +11,7 @@

    --> + Showing last 90 days report ({{fromDate | date}} - {{toDate | date}})

    + Showing last 90 days report ({{fromDate | date}} - {{toDate | date}}) - +
    diff --git a/src/Socioboard/wwwroot/contents/socioboard/views/shareathon/fbtw_feedsharing.html b/src/Socioboard/wwwroot/contents/socioboard/views/shareathon/fbtw_feedsharing.html index fc57ace06..37e1d59e8 100644 --- a/src/Socioboard/wwwroot/contents/socioboard/views/shareathon/fbtw_feedsharing.html +++ b/src/Socioboard/wwwroot/contents/socioboard/views/shareathon/fbtw_feedsharing.html @@ -37,8 +37,7 @@
    -
    -
    +
    @@ -88,17 +87,222 @@