Module Values.BackendAuthSocialProviderConfigSource

Describes third-party social federation configurations for allowing your app users to sign in using OAuth.

Sourcetype nonrec t = {
  1. clientId : string option;
    (*

    Describes the client_id, which can be obtained from the third-party social federation provider.

    *)
  2. clientSecret : string option;
    (*

    Describes the client_secret, which can be obtained from third-party social federation providers.

    *)
}
Sourceval make : ?clientId:??? -> ?clientSecret:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of string ]) 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