From b02716a0a8bbd05ce884390a67ff4c8b9b836fa4 Mon Sep 17 00:00:00 2001 From: Capster Date: Fri, 1 Dec 2023 18:30:48 +0300 Subject: [PATCH] Fix typo in `Authorization` section of README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 07836e5..5b78a36 100644 --- a/README.md +++ b/README.md @@ -60,8 +60,8 @@ https://shikimori.me/oauth/authorize?client_id=CLIENT_ID&redirect_uri=REDIRECT_U import { auth } from 'node-shikimori'; const { getAccessToken } = auth({ - client_id: 'YOUR_CLIENT_ID', - client_secret: 'YOUR_CLIENT_SECTET', + clientId: 'YOUR_CLIENT_ID', + clientSecret: 'YOUR_CLIENT_SECTET', }); const accessToken = await getAccessToken('YOUR_AUTH_CODE');