The Microsoft Graph SDK
Having a well-built SDK is extremely important for developers. Not only will it make your life a lot easier, but it also handles security for you and increases the performance of your applications. It gives developers and users of your applications a consistent way of doing things.
This is also the case for Microsoft Graph. Microsoft provides the Microsoft Graph SDK, which has been specifically designed to simplify building applications that access Microsoft Graph. It includes two different components:
- Service library: This library consists of models and request builders that are generated from Microsoft Graph's metadata endpoint. When working with different datasets that are included in Microsoft Graph, this will provide a strongly typed and discoverable experience when writing your applications.
- Core library: The core library provides a set of built-in capabilities that help to implement common scenarios when working with the Microsoft...