Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

fix: tiktok should follow the same config naming convention #212

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion playground/.env.example
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ NUXT_OAUTH_VK_CLIENT_SECRET=
NUXT_OAUTH_YANDEX_CLIENT_ID=
NUXT_OAUTH_YANDEX_CLIENT_SECRET=
# TikTok
NUXT_OAUTH_TIKTOK_CLIENT_KEY=
NUXT_OAUTH_TIKTOK_CLIENT_ID=
NUXT_OAUTH_TIKTOK_CLIENT_SECRET=
# Dropbox
NUXT_OAUTH_DROPBOX_CLIENT_ID=
Expand Down
2 changes: 1 addition & 1 deletion src/runtime/server/lib/oauth/tiktok.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import type { OAuthConfig } from '#auth-utils'
export interface OAuthTikTokConfig {
/**
* TikTok Client Key
* @default process.env.NUXT_OAUTH_TIKTOK_CLIENT_KEY
* @default process.env.NUXT_OAUTH_TIKTOK_CLIENT_ID
*/
clientKey?: string

Expand Down