11# OAuth2 Server
22
3- [ ![ version] ( https://img.shields.io/badge/release-0.11.0 -success )] ( https://deno.land/x/oauth2_server@0.11.0 )
4- [ ![ deno doc] ( https://doc.deno.land/badge.svg )] ( https://doc.deno.land/https/deno.land/x/oauth2_server@0.11.0 /authorization_server.ts )
3+ [ ![ version] ( https://img.shields.io/badge/release-0.11.1 -success )] ( https://deno.land/x/oauth2_server@0.11.1 )
4+ [ ![ deno doc] ( https://doc.deno.land/badge.svg )] ( https://doc.deno.land/https/deno.land/x/oauth2_server@0.11.1 /authorization_server.ts )
55[ ![ CI] ( https://github.com/udibo/oauth2_server/workflows/CI/badge.svg )] ( https://github.com/udibo/oauth2_server/actions?query=workflow%3ACI )
66[ ![ codecov] ( https://codecov.io/gh/udibo/oauth2_server/branch/main/graph/badge.svg?token=8Q7TSUFWUY )] ( https://codecov.io/gh/udibo/oauth2_server )
77[ ![ license] ( https://img.shields.io/github/license/udibo/oauth2_server )] ( https://github.com/udibo/oauth2_server/blob/master/LICENSE )
@@ -44,19 +44,19 @@ also acting as an authorization server.
4444
4545``` ts
4646// Import from Deno's third party module registry
47- import { ResourceServer } from " https://deno.land/x/oauth2_server@0.11.0 /resource_server.ts" ;
47+ import { ResourceServer } from " https://deno.land/x/oauth2_server@0.11.1 /resource_server.ts" ;
4848// Import from GitHub
49- import { ResourceServer } from " https://raw.githubusercontent.com/udibo/oauth2_server/0.11.0 /resource_server.ts" ;
49+ import { ResourceServer } from " https://raw.githubusercontent.com/udibo/oauth2_server/0.11.1 /resource_server.ts" ;
5050```
5151
5252The AuthorizationServer is an extension of the ResourceServer, adding methods
5353used by the authorize and token endpoints.
5454
5555``` ts
5656// Import from Deno's third party module registry
57- import { AuthorizationServer } from " https://deno.land/x/oauth2_server@0.11.0 /authorization_server.ts" ;
57+ import { AuthorizationServer } from " https://deno.land/x/oauth2_server@0.11.1 /authorization_server.ts" ;
5858// Import from GitHub
59- import { AuthorizationServer } from " https://raw.githubusercontent.com/udibo/oauth2_server/0.11.0 /authorization_server.ts" ;
59+ import { AuthorizationServer } from " https://raw.githubusercontent.com/udibo/oauth2_server/0.11.1 /authorization_server.ts" ;
6060```
6161
6262## Usage
@@ -66,7 +66,7 @@ An example of how to use this module can be found
6666but it should give you an idea of how to use this module.
6767
6868See
69- [ deno docs] ( https://doc.deno.land/https/deno.land/x/oauth2_server@0.11.0 /authorization_server.ts )
69+ [ deno docs] ( https://doc.deno.land/https/deno.land/x/oauth2_server@0.11.1 /authorization_server.ts )
7070for more information.
7171
7272### Grants
0 commit comments