John Deere Authentication With Leaf

08 Oct, 2021

John Deere Authentication With Leaf

John Deere Authentication With Leaf

In this post we are going to show you how to easily go through John Deere authorization flow with Leaf. That is, get authorized to access your users' John Deere data with Leaf. We'll be making some calls to Leaf, all endpoints can be found in our docs and Postman collection. Let's get to it!

(Clique aqui para a tradução em português)

Summary

  • Step 0: Create a developer account with John Deere
  • Step 1: Get your John Deere developer credentials
  • Step 2: Get permission from John Deere to access the endpoints
  • Step 3: Get your users’ John Deere tokens with Leaf
  • Step 4: Get permission to access your user’s data
  • Step 5: Add John Deere credentials to Leaf

Keep in mind that this tutorial is a full walkthrough. Most of the steps presented will be done only once, meaning that subsequent calls will be much easier and faster.

Step 0: Create A Developer Account With John Deere

(if you already have a developer account in John Deere, you can skip this step)

Creating a John Deere developer account is a very simple and automatic process, just register with this link.

After that, you will have created your developer account and can go to the next step of this tutorial.

Step 1: Get Your John Deere Developer Credentials

At the end of this step, you want to have retrieved:

your App ID and Shared Secret

Retrieve your John Deere App ID and Shared Secret

First, you have to login in to your John Deere developer account. To do this, go to https://developer.deere.com/, and click Sign In (top right corner) and log in.

Leaf, data infrastructure for agriculture

Click in "My Applications" in the horizontal bar:

Leaf, data infrastructure for agriculture

Then, click "Add Application" and create a new application.

Leaf, data infrastructure for agriculture

Once it’s created, click on “View Details”:

Leaf, data infrastructure for agriculture

Finally, get an App ID and Secret:

Leaf, data infrastructure for agriculture

Awesome! Now you have your John Deere App ID and Shared Secret. You will use them in the next step.

Step 2: Get Permission From John Deere To Access The Endpoints

By default, John Deere gives your application access to a limited set of endpoints, including the ability to get field and machine details. Before Leaf is able to fetch operations data, you have to ask John Deere permission to access the endpoints. On John Deere’s landing page, https://developer.deere.com/, click “Contact Us”, in the bottom corner. There, select “API Access Request”, and a form will appear.

Leaf, data infrastructure for agriculture

Fill out the required information in the form, including the (optional) Application Name & Client ID created in step 1. In the Available APIs field, enter Field Operations. In the Description selection, please describe the business case for needing access to the APIs. You may also ask for permissions to other APIs based on the data you will need in your integration. Submit the form to John Deere.

John Deere will contact you soon so you can have access to the required endpoints.

Remember to create a new request for Machines (Available APIs) if your application needs access to Machine data as well.

Step 3: Get Your Users’ John Deere Tokens With Leaf

To get your users' tokens to access their John Deere data, your application must go through John Deere OAuth flow. First, you need to redirect the user to a custom URL that is the John Deere page that will present the user the choice of authorizing your app to access their data.

To get the URL for this authentication step, just send a POST to

https://johndeere-oauth2-helper.withleaf.io/get_url

with the following JSON:

Leaf will return a URL that you can send your user to, so they can authorize access to their data and be redirected to your app. Note that John Deere will redirect your user to the "clientRedirectUrl" and also send a code that you will need to make a final request, and get your users' tokens. The clientRedirectUrl must be set in your app’s configuration.

Get the user’s tokens

Now, the last thing needed is to get the user’s tokens. Once users log in on John Deere's website link you created, they will authorize your application to access their data and they will be redirected back to the "clientRedirectUrl" you set. Then, your application will use the response URL to get the user’s tokens. Just send a POST to

https://johndeere-oauth2-helper.withleaf.io/get_token

with the following JSON:

A JSON containing the tokens ("accessToken" and "refreshToken") will be returned, and you can add them to Leaf as John Deere credentials.

note: Leaf will manage each and every token, making sure they are always refreshed and valid.

Step 4: Get Permission To Access Your User’s Data

Now that the user is connected to your application, the user must allow you to access the data. To do so, redirect your user to the following URL:

https://connections.deere.com/connections/yourJohnDeereAppId/select-organizations?redirect_uri=yourRedirectUrl

Replace the required URL fields with your John Deere Application ID and the redirect url of your application. The redirect URL does not need to be the same as the one used in the previous step, as long as it is also registered in your app’s configuration. Your user will be redirected to the following screen:

Leaf, data infrastructure for agriculture

In this screen the users will select the organizations they want to share data with you, toggle the button so it’s green, and save. Leaf will only be able to fetch data from allowed organizations. After that, the users will be redirected to the specified redirect URL.

Step 5: Add John Deere Credentials To Leaf

When you integrate with a provider via Leaf, you'll need to create something called a 'Leaf User', which is used to manage provider authentication and organize data for your end users. In most cases, the Leaf User will be the farmer or consultant that has access to the source data inside the machinery company’s FMIS (e.g. John Deere Operations Center or Climate Field View platform).

To send your credentials to Leaf, you will need your access token from Leaf, and have already created a Leaf User.

Here is how you get your access token.
Here is how you create a Leaf User.

note: the same Leaf User can be attached to many providers, so you can query data for that Leaf User from all the providers they have data with at the same time.

Now, attach your credentials to the Leaf User you created. Send a POST to

https://api.withleaf.io/services/usermanagement/api/users/yourLeafUserId/john-deere-credentials

with the following Header:

and with the following JSON

The default value for clientEnvironment is STAGE. For you to have a working credential with clientEnvironment as PRODUCTION, your application must have production permissions from John Deere, otherwise you won’t be able to use those credentials. To gain production permissions you can follow John Deere’s tutorial.

Excellent!

Now Leaf will start fetching your farm data from John Deere. You can now query Leaf for your standardized data.

Ready to begin?

Get API Keys and Start Building Today!

Sign up for free account

Questions? Get in touch