Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/punchcafe/oauth-server
A simple implementation of an OAuth server.
https://github.com/punchcafe/oauth-server
Last synced: about 1 month ago
JSON representation
A simple implementation of an OAuth server.
- Host: GitHub
- URL: https://github.com/punchcafe/oauth-server
- Owner: punchcafe
- Created: 2022-05-31T09:45:17.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-06-22T19:27:22.000Z (over 2 years ago)
- Last Synced: 2024-10-27T23:38:49.332Z (3 months ago)
- Language: Elixir
- Size: 18.6 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# OauthImplementation
## Implementation Plan
```
entities:access_token:
token(id) | user_id | client_id | scopes
refresh_token:
token(id) | user_id | client_id | scopes
client
id | secret | avatar | display_name | dev_id
dev_account
username | password | id |// potentially user_idindividual_permissions (for front end)
scope_permissions_mappingPages:
Login (nice CRT vibe)
Manage Clients (user)```
## Installation
If [available in Hex](https://hex.pm/docs/publish), the package can be installed
by adding `oauth_implementation` to your list of dependencies in `mix.exs`:```elixir
def deps do
[
{:oauth_implementation, "~> 0.1.0"}
]
end
```Documentation can be generated with [ExDoc](https://github.com/elixir-lang/ex_doc)
and published on [HexDocs](https://hexdocs.pm). Once published, the docs can
be found at [https://hexdocs.pm/oauth_implementation](https://hexdocs.pm/oauth_implementation).