mirror of
https://github.com/bitinflow/nuxt-oauth.git
synced 2026-03-14 22:25:58 +00:00
27 lines
836 B
Markdown
27 lines
836 B
Markdown
# Upgrade Guide
|
|
|
|
## General Notes
|
|
|
|
## Upgrading To 2.0 From 1.x
|
|
|
|
### Changing default response type to `code`
|
|
|
|
OAuth 2 Implicit Grant Token authentication
|
|
is [not recommended](https://datatracker.ietf.org/doc/html/draft-ietf-oauth-security-topics) anymore. If you still
|
|
want to use the `token` response type, you need to set it explicitly with `responseType: 'token'` in the
|
|
`oauth` configuration. Otherwise, you will use Authorization Code Grant with PKCE by default.
|
|
|
|
### Refactor default `login` and `callback` routes to `/auth/login`
|
|
|
|
We nested all authentication related routes under `/auth` prefix, so it aligned with our documentation and
|
|
provided a better default configuration. If you want to use the old routes, you need to update your `oauth`
|
|
configuration:
|
|
|
|
```
|
|
endpoints: {
|
|
login: '/login',
|
|
callback: '/login',
|
|
},
|
|
```
|
|
|