Appearance
Naver authentication
Naver authentication lets your users sign in with a Naver account (popular in Korea). Once connected, you can offer “Continue with Naver” in your WeWeb app.
What this integration supports
- Social sign in with Naver
- Redirect to different pages for success, error, and first-time users
Setup in Naver Developers
You register an application in Naver Developers and add WeWeb’s callback URL (the URL Naver sends users back to after sign in).
1. Register an application
- Go to Naver Developers.
- Create and register a new application for
Naver Login. - Copy the:
Client IDClient Secret
2. Add the callback URL
In your application settings, add your callback URL for the environments you will use.
Use:
https://<your-domain>/api/auth/callback/naver
If Naver asks you to configure separate environments (for example PC Web and Mobile Web), add the same callback URL in each environment you plan to support.
Connect Naver in WeWeb
- In the WeWeb editor, go to
Data & API → Auth → Integrating providers. - Find
Naverand expand it. - Turn on the
Enabletoggle. - Paste:
Client IDClient Secret
- Click
Save.
WeWeb stores these values as environment variables (for example PROVIDER_NAVER_CLIENT_ID and PROVIDER_NAVER_CLIENT_SECRET).
Test sign in
- In
Interface, add a “Continue with Naver” button. - Create a workflow on click and add
Sign in with social provider. - Set:
Provider:naverSuccess page,Error page, And (optional)New user page
- Preview your project and complete the Naver sign-in flow.
For what to do after sign in (roles, private pages, and access checks), see Users and roles overview →.
Common pitfalls
Callback URL mismatch
If Naver shows a callback or redirect error, the callback URL in Naver usually doesn’t match what your app is using.
- In Naver Developers, confirm you registered
https://as a callback URL./api/auth/callback/naver - Make sure the domain matches the environment you are testing (preview vs production).
App is still in testing or not approved
Depending on your Naver app settings, only specific test users may be able to sign in until the app is approved.
- Check your Naver app status and any test-user restrictions in Naver Developers.
- If needed, add yourself as a tester while you are setting up the integration.
Reference
WeWeb settings
| Setting in WeWeb | Description | Where to find it in Naver Developers |
|---|---|---|
Client ID | Identifies your Naver application. | Application settings (Client ID). |
Client Secret | Secret used to securely complete sign in. | Application settings (Client Secret). |
FAQs
Which callback URL should I register in Naver Developers?
Register https://<your-domain>/api/auth/callback/naver. Add one callback URL per environment you use.
What provider value should I use in the workflow action?
Use naver as the Provider value in the Sign in with social provider action.
Continue learning
Next, learn how to protect pages and data once users are signed in.

