peombwa / msgraph-sdk-java-core

Microsoft Graph SDK for Java - Core Library

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Microsoft Graph Core SDK for Java

Get started with the Microsoft Graph Core SDK for Java by integrating the Microsoft Graph API into your Java and Android application!

Samples and usage guide

Middleware usage
Batching

1. Installation

1.1 Install via Gradle

Add the repository and a compile dependency for microsoft-graph-core to your project's build.gradle:

repository {
    jcenter()
}

dependency {
    // Include the sdk as a dependency
    compile('com.microsoft.graph:microsoft-graph-core:1.0.1')
}

1.2 Install via Maven

Add the dependency in dependencies in pom.xml

<dependency>
	<groupId>com.microsoft.graph</groupId>
	<artifactId>microsoft-graph-core</artifactId>
	<version>1.0.1</version>
</dependency>

1.3 Enable ProGuard (Android)

The nature of the Graph API is such that the SDK needs quite a large set of classes to describe its functionality. You need to ensure that ProGuard is enabled on your project. Otherwise, you will incur long build times for functionality that is not necessarily relevant to your particular application. If you are still hitting the 64K method limit, you can also enable multidexing.

2. Getting started

2.1 Register your application

Register your application by following the steps at Register your app with the Azure AD v2.0 endpoint.

2.2 Create an IAuthenticationProvider object

An instance of the HttpClients class handles building client. To create a new instance of this class, you need to provide an instance of ICoreAuthenticationProvider, which can authenticate requests to Microsoft Graph.

To get instance of HttpClients

Auth in Java app here

Auth in Android app here

2.3 Get a HttpClients object

You must get a HttpClients object to make requests against the service.

OkHttpClient client = HttpClients.createDefault(iCoreAuthenticationProvider);

3. Make requests against the service

After you have a HttpClients that is authenticated, you can begin making calls against the service. The requests against the service look like our REST API.

3.1 Get the user's details

To retrieve the user's details

Request request = new Request.Builder().url("https://graph.microsoft.com/v1.0/me/").build();

client.newCall(request).enqueue(new Callback() {
	@Override
	public void onResponse(Call call, Response response) throws IOException {
		String responseBody = response.body().string();
		// Your processing with the response body 
	}
			
	@Override
	public void onFailure(Call call, IOException e) {
		e.printStackTrace();
	}
});

3.2 Get the user's drive

To retrieve the user's drive:

Request request = new Request.Builder().url("https://graph.microsoft.com/v1.0/me/drive").build();

client.newCall(request).enqueue(new Callback() {
	@Override
	public void onResponse(Call call, Response response) throws IOException {
		String responseBody = response.body().string();
		// Your processing with the response body 
	}
			
	@Override
	public void onFailure(Call call, IOException e) {
		e.printStackTrace();
	}
});

4. Issues

For known issues, see issues.

5. Contributions

The Microsoft Graph SDK is open for contribution. To contribute to this project, see Contributing.


Deepak Agrawal

💻

Nakul Sabharwal

💻📋

This project follows the all-contributors specification. Contributions of any kind are welcome!

6. Supported Java versions

The Microsoft Graph SDK for Java library is supported at runtime for Java 7+ and Android API revision 15 and greater.

7. License

Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT license.

8. Third-party notices

Third-party notices

About

Microsoft Graph SDK for Java - Core Library

License:MIT License


Languages

Language:Java 95.7%Language:PowerShell 4.3%