Below you will find some information on how to perform common tasks.
For the project to build, these files must exist with exact filenames:
public/index.html
is the page template;src/index.js
is the JavaScript entry point.
You can delete or rename the other files.
You may create subdirectories inside src
. For faster rebuilds, only files inside src
are processed by Webpack.
You need to put any JS and CSS files inside src
, otherwise Webpack won’t see them.
Only files inside public
can be used from public/index.html
.
Read instructions below for using assets from JavaScript and HTML.
You can, however, create more top-level directories.
They will not be included in the production build, so you can use them for things like documentation.
In this example, an API call is made using an access token received from a Curity server after authentication using the "assisted token flow". The client uses the React framework and shows how to use this development tool to perform the assisted token flow. For that, it calls a RESTful API that is hosted in a separate node server. To start both, simply invoke the following command:
npm start
Then, navigate to http://localhost:3000 in a web browser.
You can make changes to the React single-page application (SPA) to perform your own experimentation.
If you do, the changes you make to the app's source files will automatically reload.
If you change the API that the client invokes, you do not need to start the node API server.
To do this, run npm run run-app
instead of npm start
.
If you want to start only the API, you can do so with the command node server/server.js
.
npm run build
Builds the app for production to the build
folder.
It correctly bundles React in production mode and optimizes the build for the best performance.
The build is minified and the filenames include the hashes.
Your app is ready to be deployed!
In order to run this example you need to make some configurations in Curity server.
The easiest way is to download and install the sample configuration from curity docs.
This sample configuration has already configured one Authentication Profile
and one OAuth Profile
. The OAuth Profile
also has an app configured (client-assisted-example
).
If you are not using the sample configuration, then you need to make sure the following configuration changes are made before you use this example.
-
Login into the
Admin UI
and make sure that you have uploaded a valid license underSystem -> General
. -
Go to
Token Service
profile and make sure that at leastImplicit Flow
andAssisted Token
are enabled on theClient Settings
page of that profile. -
Go to the
Clients
page of the profile and create a client calledclient-assisted-example
. -
This client (accessible from
Token Service -> Clients -> client-assisted-example -> Edit Client
) should have theImplicit Flow
andAssisted Token
capabilities selected under theCapabilities
section. -
Navigate to
OAuth/OpenID Settings
section make sure to addopenid
scope.
-
Update the
Redirect URIs
andAllowed Origins
settings for theclient-assisted-example
Client. The redirect URI should behttp://localhost:3000
. The allowed origin should be the same or, for testing purposes, you can also use*
. -
Commit
the changes and you are all setup.
If you compare the final config with the sample config, then you will find the following salient differences.
<client-store>
<config-backed>
<client>
<id>client-assisted-example</id>
<redirect-uris>http://localhost:3000</redirect-uris>
<allowed-origins>*</allowed-origins>
<capabilities>
<implicit/>
<assisted-token/>
</capabilities>
</client>
<!-- ... -->
</config-backed>
</client-store>
To integrate this example into any of React app, you need to copy App Component
(App.js
) and constants.js
files into your project.
The last thing is to configure environment variables like ISSUER
, CLIENT_ID
, API_URL
,AUTH_SERVER_ORIGIN
and OPENID_CONFIGURATION_URL
in constants.js
file.
You can see the following example environment config:
export const ISSUER = "https://localhost:8443/";
export const CLIENT_ID = "client-assisted-example";
export const API_URL = "http://127.0.0.1:8100";
export const AUTH_SERVER_ORIGIN = "http://127.0.0.1:8100";
export const OPENID_CONFIGURATION_URL = 'oauth/v2/oauth-anonymous/.well-known/openid-configuration';
By default, the generated project uses the latest version of React.
You can refer to the React documentation for more information about supported browsers.
For more information about Curity, its capabilities, and how to use it with React and other app development frameworks, visit developer.curity.io. For background information on using Curity for API access, consult the API integration section of the Curity developer manual. For additional insights in how to use Curity with microservices and APIs from SPAs, read How to Control User Identity within Microservices on the Nordic APIs blog. You may also be interested in validating tokens sent from the React front-end in a gateway like Apigee or NGINX.
This software is copyright (C) 2019 Curity AB. It is open source software that is licensed under the Apache 2.