MSGraphSDK 0.10.1

MSGraphSDK 0.10.1

TestsTested
LangLanguage Obj-CObjective C
License MIT
ReleasedLast Release May 2016

Maintained by Microsoft Graph, Microsoft Graph SDK Team.



MSGraphSDK 0.10.1

  • By
  • Microsoft Graph

Get started with the Microsoft Graph SDK for iOS

This client library is a release candidate and is still in preview status - please continue to provide feedback as we iterate towards a production supported library.

1. Installation

2. Getting started

2.1 Register your application

Register your application by following these steps.

2.2 Authentication

  • To make requests, a MSAuthenticationProvider must be provided which is capable of authenticating HTTPS requests with an appropriate OAuth 2.0 bearer token.

  • This can be set by calling the class method [MSGraphClient setAuthenticationProvider:myAuthProvider];

  • See msgraph-sdk-ios-nxoauth2-adapter for a sample implementation of MSAuthenticationProvider that can be used to jump-start your project.

2.3 Getting an authenticated MSGraphClient object

  • Once you have set the authentication provider, you must get an MSGraphClient object to make requests against the service:
self.client = [MSGraphClient client];
  • It is often practical to perform this step only upon successful completion of any UI login flow required by the specified authentication provider.

2.4 Making requests against the service

Once you have an MSGraphClient that is authenticated you can begin to make calls against the service. The requests against the service look like our REST API.

For example, to retrieve a user's OneDrive:

[[[[graphClient me] drive] request] getWithCompletion:^(MSGraphDrive *drive, NSError *error){
    //Returns an MSGraphDrive object or an error if there was one
}];

To get a user's root folder of their drive:

[[[[[graphClient me] drive] items:@"root"] request] getWithCompletion:^(MSGraphDriveItem *item, NSError *error){
    //Returns an MSGraphDriveItem object or an error if there was one
}];

3. Documentation

For a more detailed documentation see:

4. Issues

For known issues, see issues.

5. Contributions

Contributions

6. License

License