Skip to content

Commit 541dcad

Browse files
author
Fabrizio Mirabito
authored
Update README (#45)
* Update README.md API access is now enabled for user with free plan * Increase timeout
1 parent 0d2a87c commit 541dcad

File tree

2 files changed

+4
-6
lines changed

2 files changed

+4
-6
lines changed

README.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,7 @@ For a working example, see [the example folder](https://github.com/arduino/iot-c
3131

3232
## How to get Arduino IoT Cloud Client Credentials
3333

34-
**NOTE:** Client Credentials are an Arduino IoT Cloud Maker Plan feature. Form more informations check the [Arduino Store](https://store.arduino.cc/digital/create).
35-
36-
You can generate Arduino IoT Cloud Client Credentials in the `ARDUINO API` section in the [IoT Cloud things dashobard](https://create.arduino.cc/iot/things):
34+
You can generate Arduino IoT Cloud Client Credentials in the `ARDUINO API` section in the [IoT Cloud things section](https://create.arduino.cc/iot/things):
3735

3836
### Step 1
3937

@@ -45,4 +43,4 @@ You can generate Arduino IoT Cloud Client Credentials in the `ARDUINO API` secti
4543

4644
### Step 3
4745

48-
![IoT Cloud Site](https://github.com/arduino/iot-client-js/blob/master/img/selection_3.png?raw=true)
46+
![IoT Cloud Site](https://github.com/arduino/iot-client-js/blob/master/img/selection_3.png?raw=true)

client_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ func TestMain(m *testing.M) {
9696
// Create an instance of the iot-api Go client, we pass an empty config
9797
// because defaults are ok
9898
client = NewAPIClient(NewConfiguration())
99-
99+
cleanup()
100100
code := m.Run()
101101
cleanup()
102102
// call flag.Parse() here if TestMain uses flags
@@ -295,7 +295,7 @@ func TestProperties(t *testing.T) {
295295
assert.NoError(t, err, "No errors publishing property")
296296

297297
// Wait for data pipeline ingest the last value
298-
time.Sleep(5 * time.Second)
298+
time.Sleep(10 * time.Second)
299299

300300
// Get Last value
301301
property, _, err = client.PropertiesV2Api.PropertiesV2Show(ctx, thing.Id, property.Id, nil)

0 commit comments

Comments
 (0)