Skip to content
This repository has been archived by the owner on Oct 24, 2024. It is now read-only.

Commit

Permalink
docs[jwt-verifier]: Verifier is only for Node.js, link to Express exa…
Browse files Browse the repository at this point in the history
…mple (#223)
  • Loading branch information
robertjd authored and robertdamphousse-okta committed Jun 11, 2018
1 parent 592ec42 commit c68e2d2
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion packages/jwt-verifier/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Okta JWT Verifier
# Okta JWT Verifier for Node.js

[![npm version](https://img.shields.io/npm/v/@okta/jwt-verifier.svg?style=flat-square)](https://www.npmjs.com/package/@okta/jwt-verifier)
[![build status](https://img.shields.io/travis/okta/okta-oidc-js/master.svg?style=flat-square)](https://travis-ci.org/okta/okta-oidc-js)
Expand All @@ -9,6 +9,10 @@ This library verifies Okta access tokens (issued by Okta authorization servers)
* Access token is not expired (requires local system time to be in sync with Okta, checks the `exp` claim of the access token).
* Any custom claim assertions that have been configured.

> This library is for Node.js applications and will not compile into a front-end application. If you need to work with tokens in front-end applications, please see [okta-auth-js](https://github.com/okta/okta-auth-js).
Using Express? Our [Express Resource Server Example](https://github.com/okta/samples-nodejs-express-4/tree/master/resource-server) will show you how to use this library in your Express application.

To learn more about verification cases and Okta's tokens please read [Working With OAuth 2.0 Tokens](https://developer.okta.com/authentication-guide/tokens/)

## How to use
Expand Down

0 comments on commit c68e2d2

Please sign in to comment.