Skip to content

Update index.md #164

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions src/pages/integrate/setup/developer-credentials/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,19 +9,19 @@ keywords:

# How to get your developer credentials

Before using the Libraries API you'll need to get your developer credentials.
Before using the Libraries API, you'll need to get your developer credentials.

Specifically, you'll need to get your _Client ID_ (also referred to as an _API Key_) and _Client Secret_ from the Adobe Developer Console.

These credentials will be used when calling the Libraries API to identify your application to Adobe and let your users make informed decisions about granting your application access to their data.
When calling the Libraries API to identify your application to Adobe, these credentials will be used to let your users make informed decisions about granting your application access to their data.

In this tutorial, we'll show you how to get your credentials from the Adobe Developer Console as well as an easy way to get your own user access token for use during development.
In this tutorial, we'll show you how to get your credentials from the Adobe Developer Console and an easy way to get your own user access token for use during development.

With your developer credentials in hand, you'll be ready to start making API calls.

## Set up your Adobe Developer Console project

Visit the [Adobe Developer Console](https://console.adobe.io/) and log in with your Adobe ID (or create a free Adobe ID if you don't already have one). From there you can follow the steps in the following sections to get your developer credentials.
Visit the [Adobe Developer Console](https://console.adobe.io/) and log in with your Adobe ID (or create a free Adobe ID if you don't already have one). You can follow the steps in the following sections to get your developer credentials.

### Create your project

Expand All @@ -38,13 +38,13 @@ Visit the [Adobe Developer Console](https://console.adobe.io/) and log in with y

### Add an API to your project

1. Click the "Add to Project" button in the upper left hand corner and select "API".
2. Select the "Creative Cloud Libraries" card from the list and hit "Next" in the lower right hand corner.
1. Click the "Add to Project" button in the upper left-hand corner and select "API".
2. Select the "Creative Cloud Libraries" card from the list and hit "Next" in the lower right-hand corner.
3. Follow the steps in the "Add an authentication method" section just below.

### Add an authentication method to your project

Regardless of which authentication workflow you choose to implement for your project, the [scopes](https://www.adobe.io/authentication/auth-methods.html#!AdobeDocs/adobeio-auth/master/OAuth/Scopes.md) required for access to CC Libraries are:
Regardless of which authentication workflow you choose to implement for your project, the [scopes](https://www.adobe.io/authentication/auth-methods.html#!AdobeDocs/adobeio-auth/master/OAuth/Scopes.md) required to access CC Libraries are:
`openid,creative_sdk,profile,address,AdobeID,email,cc_files,cc_libraries`.
Make sure the scopes you provide exist in this same comma-delimited (and no spaces) string format.

Expand All @@ -53,10 +53,10 @@ Make sure the scopes you provide exist in this same comma-delimited (and no spac

- **If you're using the [OAuth 2.0 Playground](https://adobeioruntime.net/api/v1/web/io-solutions/adobe-oauth-playground/oauth.html)** (development only):
- Use the URI indicated on the Playground page for your Redirect URI and Redirect URI Pattern.
- You can find more infomation about the OAuth Playground in ["How to get access tokens with OAuth"](../oauth/).
- You can find more information about the OAuth Playground in ["How to get access tokens with OAuth"](../oauth/).
- **If you're implementing OAuth 2.0 in your application**:
- You can provide your own Redirect URI and Redirect URI Pattern.
- You can find more infomation about the Adobe OAuth 2.0 in Adobe's [OAuth 2.0 Authentication and Authorization](https://www.adobe.io/authentication/auth-methods.html#!AdobeDocs/adobeio-auth/master/OAuth/OAuth.md) documentation.
- You can find more information about the Adobe OAuth 2.0 in Adobe's [OAuth 2.0 Authentication and Authorization](https://www.adobe.io/authentication/auth-methods.html#!AdobeDocs/adobeio-auth/master/OAuth/OAuth.md) documentation.

3. When finished, click "Save configured API".

Expand Down