Module Values.AuthenticationConfigurationSource

Provides the configuration information to connect to websites that require user authentication.

Sourcetype nonrec t = {
  1. basicAuthentication : BasicAuthenticationConfigurationList.t option;
    (*

    The list of configuration information that's required to connect to and crawl a website host using basic authentication credentials. The list includes the name and port number of the website host.

    *)
}
Sourceval make : ?basicAuthentication:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `Integer of Port.t | `String of Host.t ]) list ] list ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t