├── README.md └── docs ├── api.md ├── clients.md ├── pkce.md ├── scopes.md └── service-clients.md /README.md: -------------------------------------------------------------------------------- 1 | # Firefox Accounts OAuth Server 2 | 3 | This code is now managed in 4 | the [fxa-auth-server](https://github.com/mozilla/fxa-auth-server) repository. 5 | This repository is maintained for historical purposes only. 6 | 7 | -------------------------------------------------------------------------------- /docs/api.md: -------------------------------------------------------------------------------- 1 | This documentation now lives [in the auth-server repo](https://github.com/mozilla/fxa-auth-server/blob/master/fxa-oauth-server/docs/api.md). 2 | -------------------------------------------------------------------------------- /docs/clients.md: -------------------------------------------------------------------------------- 1 | This documentation now lives [in the auth-server repo](https://github.com/mozilla/fxa-auth-server/blob/master/fxa-oauth-server/docs/clients.md). 2 | -------------------------------------------------------------------------------- /docs/pkce.md: -------------------------------------------------------------------------------- 1 | This documentation now lives [in the auth-server repo](https://github.com/mozilla/fxa-auth-server/blob/master/fxa-oauth-server/docs/pkce.md). 2 | -------------------------------------------------------------------------------- /docs/scopes.md: -------------------------------------------------------------------------------- 1 | This documentation now lives [in the auth-server repo](https://github.com/mozilla/fxa-auth-server/blob/master/fxa-oauth-server/docs/scopes.md). 2 | -------------------------------------------------------------------------------- /docs/service-clients.md: -------------------------------------------------------------------------------- 1 | This documentation now lives [in the auth-server repo](https://github.com/mozilla/fxa-auth-server/blob/master/fxa-oauth-server/docs/service-clients.md). 2 | --------------------------------------------------------------------------------