Expand description

module for creating clients with various authentication methods

Each client has the type Client<A: Authenticate>. You can create a client with the functions provided by this module.

Examples

let client_id = String::from("<clientid>");
let client_secret = String::from("<clientsecret>");

let client = Client::with_client_secret_auth(
    "https://instance.crm.dynamics.com/",
    "12345678-1234-1234-1234-123456789012",
    client_id,
    client_secret,
);

Structs

A client capable of connecting to a dataverse environment

Statics

Microsoft Dataverse Web-API Version this client uses