private GoogleDrive Auth_Setup()
        {
            string Clientid     = "**********************";
            string Clientsecret = "******************";

            CloudRail.AppKey = "*********************";

            GoogleDrive googleDrive = new GoogleDrive(new LocalReceiver(8082), Clientid, Clientsecret, "http://localhost:8082/auth", "Loading");
            string      Result      = googleDrive.GetUserLogin();

            return(googleDrive);
        }