/// <summary>
        ///     Start the internal HTTP-Server
        /// </summary>
        public void StartHttpServer(int port = 80)
        {
            _httpServer = new SimpleHttpServer(port, AuthType.Implicit);
            _httpServer.OnAuth += HttpServerOnOnAuth;

            _httpThread = new Thread(_httpServer.Listen);
            _httpThread.Start();
        }
 /// <summary>
 ///     This will stop the internal HTTP-Server (Should be called after you got the Token)
 /// </summary>
 public void StopHttpServer()
 {
     _httpServer.Dispose();
     _httpServer = null;
 }