public OAuthOptions()
 {
     TokenEndpointPath = new PathString("/token");
     AccessTokenExpireTimeSpan = TimeSpan.FromMinutes(60);
     AccessTokenFormat = new JwtFormat(this);
     Provider = new OAuthProvider();
     AllowInsecureHttp = true;
 }