Skip to content

Commit

Permalink
Merge pull request #221 from NetsBlox/oauth-token-bug
Browse files Browse the repository at this point in the history
Fix typo in method name
  • Loading branch information
brollb authored Feb 7, 2024
2 parents 27c687c + 9f5a04e commit 3faf7e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/procedures/alexa/routes.js
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ router.post(
handleErrorsInAlexa(async (req, res) => {
const reqData = req.body;
const { accessToken } = reqData.session.user;
const token = await NetsBloxCloud.getToken(accessToken);
const token = await NetsBloxCloud.getOAuthToken(accessToken);
const { username } = token;

const skillId = reqData.session.application.applicationId;
Expand Down

0 comments on commit 3faf7e7

Please sign in to comment.