Skip to content
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

Update Cloud API key creation instructions for new site design #1614

Merged
merged 2 commits into from
Dec 20, 2023
Merged
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ The final step is connecting the **DHT11 humidity sensor** to our Arduino MKR Wi

Use the steps below to use Node-RED with the Arduino Cloud:

**1.** Go to the [API keys section](https://app.arduino.cc/home/api-keys), and create a new API key.
**1.** Go to the [API keys section](https://app.arduino.cc/api-keys), and create a new API key.

**2.** Save the Client ID and Client Secret in a safe document

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ The main goal of the Application API is to allow you to create and manage IoT re

The core of those APIs is organized around [REST](http://en.wikipedia.org/wiki/Representational_State_Transfer). Our API has predictable resource-oriented URLs, accepts [form-encoded](https://en.wikipedia.org/wiki/POST_(HTTP)#Use_for_submitting_web_forms) request bodies, returns [JSON-encoded](http://www.json.org/) responses, and uses standard HTTP response codes, authentication, and verbs.

You can use those APIs, both directly calling our HTTP endpoints or using our clients that wrap those calls into easy-to-use abstractions like objects and functions. We have Applications API clients available in `javascript`, `golang`, and `python`. To use the Application API, you need to create an **API Key** in the [API Keys](https://cloud.arduino.cc/home/api-keys) section.
You can use those APIs, both directly calling our HTTP endpoints or using our clients that wrap those calls into easy-to-use abstractions like objects and functions. We have Applications API clients available in `javascript`, `golang`, and `python`. To use the Application API, you need to create an **API Key** in the [API Keys](https://cloud.arduino.cc/api-keys) section.

With this API, you can:
- Build an automated script to create your things, in bulk
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,9 @@ To authenticate, you will need to generate a `clientId` and `clientSecret`. This

**1.** Log in to your [Arduino account](https://cloud.arduino.cc/home/).

**2.** Navigate to the [Arduino Cloud home page](https://cloud.arduino.cc/home/).
**2.** Navigate to the [API Keys page](https://app.arduino.cc/api-keys).

**3.** Click **"API keys"** at the bottom left corner, and then click **"CREATE API KEY"**. Name it, and save it as a PDF. You will **not** be able to see `clientSecret` again.
**3.** Click **"CREATE API KEY"**. Name it, and save it as a PDF. You will **not** be able to see `clientSecret` again.

![API Keys in the Arduino Cloud](assets/api-keys.png)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ Each command has a set of **subcommands** which we will be exploring in this gui

- `arduino-cloud-cli credentials`

***Get your API key from the [Arduino Cloud home page](https://cloud.arduino.cc/home/) (bottom left corner of the page)***
***Get your API key from the [Arduino Cloud API Keys page](https://app.arduino.cc/api-keys)***

To authenticate with the Arduino Cloud, we will need to first set our credentials, using our `clientId` and `clientSecret` which is obtained from the Arduino Cloud API keys section.

Expand Down