File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -44,10 +44,10 @@ Using the `Client ID`, `Client Secret` and `Refresh Token` retrieved in the prev
44
44
``` js
45
45
const Alexa = require (' ask-smapi-sdk' );
46
46
47
- // specify the refreshTokenConfig with clientId, clientSecrect and refreshToken generated in the previous step
47
+ // specify the refreshTokenConfig with clientId, clientSecret and refreshToken generated in the previous step
48
48
const refreshTokenConfig = {
49
49
clientId,
50
- clientSecrect ,
50
+ clientSecret ,
51
51
refreshToken
52
52
}
53
53
const smapiClient = new Alexa.StandardSmapiClientBuilder ()
@@ -59,10 +59,10 @@ const smapiClient = new Alexa.StandardSmapiClientBuilder()
59
59
``` ts
60
60
import * as Alexa from ' ask-smapi-sdk' ;
61
61
62
- // specify the refreshTokenConfig with clientId, clientSecrect and refreshToken generated in the previous step
62
+ // specify the refreshTokenConfig with clientId, clientSecret and refreshToken generated in the previous step
63
63
const refreshTokenConfig : Alexa .RefreshTokenConfig = {
64
64
clientId ,
65
- clientSecrect ,
65
+ clientSecret ,
66
66
refreshToken
67
67
}
68
68
const smapiClient = new Alexa .StandardSmapiClientBuilder ()
You can’t perform that action at this time.
0 commit comments