You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+5-5
Original file line number
Diff line number
Diff line change
@@ -14,21 +14,20 @@ Add the following to your `build.gradle`:
14
14
15
15
```groovy
16
16
dependencies {
17
-
implementation("com.jedlix:sdk:1.4.0")
17
+
implementation("com.jedlix:sdk:1.5.0")
18
18
}
19
19
```
20
20
21
21
## Usage
22
22
23
-
When you sign up for a [Smart Charging API](https://api.jedlix.com/) account, you get a custom `baseURL`. You need to provide it to the SDK, as well as an `Authentication` implementation.
24
-
25
-
Configure the SDK:
23
+
When you sign up for a [Smart Charging API](https://api.jedlix.com/) account, you get a custom `baseURL` and `apiKey`. Configure the SDK with these values and an `Authentication` implementation. API key is not required if you use your own base URL.
26
24
27
25
```kotlin
28
26
importcom.jedlix.sdk.JedlixSDK
29
27
30
28
JedlixSDK.configure(
31
29
/* Base URL */,
30
+
/* API key */,
32
31
/* Authentication implementation */
33
32
)
34
33
```
@@ -99,10 +98,11 @@ By default the SDK logs only errors. To change it, update `JedlixSDK.logLevel`:
99
98
100
99
See the included example to learn how to use the SDK.
101
100
102
-
Open `ExampleApplication.kt` and specify your `baseURL`:
101
+
Open `ExampleApplication.kt` and specify your `baseURL` and `apiKey`:
103
102
104
103
```kotlin
105
104
baseURL =URL("<YOUR BASE URL>")
105
+
apiKey ="<YOUR API KEY>"
106
106
```
107
107
108
108
(Optional) If you use [Auth0](https://auth0.com/), you can uncomment the following code to authenticate with an Auth0 account directly, assuming the user identifier is stored in JWT body under `userIdentifierKey`.
0 commit comments