Merge pull request #53 from abstractj/KEYCLOAK-3991

KEYCLOAK-3991: Node.js module should be available through a single file download
This commit is contained in:
Stian Thorgersen 2016-11-29 14:34:31 +01:00 committed by GitHub
commit 5fddcd91c6

View file

@ -3,28 +3,34 @@
{{book.project.name}} provides a Node.js adapter built on top of https://github.com/senchalabs/connect[Connect] to protect server side JavaScript apps — the goal was to be flexible enough to integrate with frameworks like https://expressjs.com/[Express.js]. {{book.project.name}} provides a Node.js adapter built on top of https://github.com/senchalabs/connect[Connect] to protect server side JavaScript apps — the goal was to be flexible enough to integrate with frameworks like https://expressjs.com/[Express.js].
{% if book.community %}
The library can be downloaded directly from https://www.npmjs.com/package/keycloak-connect[ {{book.project.name}} organization] and the source is available at The library can be downloaded directly from https://www.npmjs.com/package/keycloak-connect[ {{book.project.name}} organization] and the source is available at
https://github.com/keycloak/keycloak-nodejs-connect[GitHub]. https://github.com/keycloak/keycloak-nodejs-connect[GitHub].
{% endif %}
To use the Node.js adapter you must first create a client for your application in the {{book.project.name}} Administration Console. The adapter supports public, confidential and bearer-only access type. Which one to choose depends on the use-case scenario. To use the Node.js adapter, first you must create a client for your application in the {{book.project.name}} Administration Console. The adapter supports public, confidential and bearer-only access type. Which one to choose depends on the use-case scenario.
Once the client is created click on the `Installation` tab select `{{book.project.name}} OIDC JSON` for `Format Option` then click on `Download`. The downloaded `keycloak.json` file should be at the root folder. Exactly, like in https://github.com/keycloak/keycloak-nodejs-connect/tree/master/example[this example]. Once the client is created click on the `Installation` tab select `{{book.project.name}} OIDC JSON` for `Format Option` then click on `Download`. The downloaded `keycloak.json` file should be at the root folder of your project.
keycloak.json:: ==== Known issue
Alongside the `example.js` lives `keycloak.json` obtained from our {{book.project.name}} Node.js adapter requires `realm-public-key` attribute and does not retrieve it automatically from {{book.project.name}}. Otherwise, your Node.js app won't start.
admin console when we provisioned this app.
In order to prevent any issues, go to your `Realm Settings` and `Keys`, copy the `Public Key` to your keycloak.json file adding `realm-public-key` attribute like the snippet below:
{ [source,json]
"realm": "example-realm", ----
"auth-server-url": "http://localhost:8080/auth", {
"ssl-required": "external", "realm": "example-realm",
"resource": "example-app", "realm-public-key": "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCrVrCuTtArbgaZzL1hvh0xtL5mc7o0NqPVnYXkLvgcwiC3BjLGw1tGEGoJaXDuSaRllobm53JBhjx33UNv+5z/UMG4kytBWxheNVKnL6GgqlNabMaFfPLPCF8kAgKnsi79NMo+n6KnSY8YeUmec/p2vjO2NjsSAVcWEQMVhJ31LwIDAQAB",
"credentials": { "auth-server-url": "http://localhost:8080/auth",
"secret": "mysecret" "ssl-required": "external",
} "resource": "example-app",
} "credentials": {
"secret": "mysecret"
}
}
----
==== Installation ==== Installation
@ -32,9 +38,23 @@ Assuming you've already installed https://nodejs.org[Node.js], create a folder f
mkdir myapp && cd myapp mkdir myapp && cd myapp
Use `npm init` command to create a `package.json` for your application. And now install the {{book.project.name}} connect adapter in the `myapp` folder, saving it in the dependencies list: Use `npm init` command to create a `package.json` for your application. Now add the {{book.project.name}} connect adapter in the dependencies list:
npm install --save keycloak-connect {% if book.community %}
dependencies": {
"keycloak-connect": "{{book.project.versionMvn}}"
}
{% endif %}
{% if book.product %}
dependencies": {
"keycloak-connect": "file://{{book.project.name}}.tgz"
}
{% endif %}
==== Usage ==== Usage
Instantiate a Keycloak class:: Instantiate a Keycloak class::