Skip to content

Commit 4e7581c

Browse files
author
Roberto Sora
authored
Updates examples links in READMEs (#57)
1 parent 6a8984f commit 4e7581c

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

downstream-templates/go/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,4 +27,4 @@ if err != nil {
2727
log.Printf("Got an access token, will expire on %s", tok.Expiry)
2828
```
2929

30-
For a working example, see [the example folder](./example) in this repo.
30+
For a working example, see [the example folder](https://github.com/arduino/iot-client-go/tree/master/example) in this repo.

downstream-templates/python/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ from iot_api_client.rest import ApiException
5353
from iot_api_client.configuration import Configuration
5454

5555
# configure and instance the API client
56-
client_config = Configuration(host="http://api2.arduino.cc/iot")
56+
client_config = Configuration(host="https://api2.arduino.cc/iot")
5757
client_config.access_token = YOUR_ACCESS_TOKEN
5858
client = iot.ApiClient(client_config)
5959

@@ -67,4 +67,4 @@ except ApiException as e:
6767
print("Got an exception: {}".format(e))
6868
```
6969

70-
For a working example, see [the example folder](./example) in this repo.
70+
For a working example, see [the example folder](https://github.com/arduino/iot-client-py/tree/master/example) in this repo.

0 commit comments

Comments
 (0)