public static async Task PostSystemUpdate()
        {
            Console.WriteLine("----------------PostSystemUpdate----------------");
            await Moment.GetPage().Update();

            await Profile.getPage().UpdatePost();

            await FriendProfile.getPage().UpdatePost();

            //new Thread(async ()=>await Moment.GetPage().Update()).Start();
            //new Thread(async ()=>await Profile.getPage().Update()).Start();
            //new Thread(async ()=>await FriendProfile.getPage().Update()).Start();
        }