GoTrue Auth
If you've completed the Authentication section of The Tutorial, you've seen how you can add the Netlify Identity Widget to your Redwood app in a matter of minutes. But what do you do if you want to use Netlify Identity, but ditch the widget? There are many cases where we want much more control over our authentication interface and functionality, while still maintaining some ease-of-use when it comes to development.
Enter GoTrue-JS, a client library for interfacing with Netlify Identity's GoTrue API.
In this recipe, we'll:
- configure Redwood Auth with GoTrue-JS,
- create a Sign Up form,
- create a Sign In form,
- create a Sign Out button,
- add auth links that display the correct buttons based on our auth state
But first, some housekeeping...
Prerequisites
Before getting started, there are a few steps you should have completed:
- Create a Redwood app
- Create a Netlify account
- Deploy your Netlify site
- Enable Netlify Identity
- Fire up a dev server:
yarn redwood dev
Enable Netlify Identity
Unless you've skipped the requirements section (for shame!), you should already have a Netlify account and a site set up. If you'd be so kind, navigate to your site's Dashboard, head to the Identity tab, and click Enable Identity:
Now you should see an Identity API endpoint, e.g. https://my-bodacious-app.netlify.app/.netlify/identity
. Copy and paste that somewhere—we'll need it in a moment when we instantiate GoTrue-JS.
Generate Auth Configuration
Let's start by installing the required packages and generating boilerplate code and files for Redwood Auth, all with this simple CLI command:
yarn redwood setup auth goTrue
By specifying goTrue
as the provider, Redwood automatically added the necessary GoTrue-JS config to our App.js. Let's open up web/src/App.js
and inspect. You should see:
import { AuthProvider } from '@redwoodjs/auth'
import GoTrue from 'gotrue-js'
import { FatalErrorBoundary } from '@redwoodjs/web'
import { RedwoodApolloProvider } from '@redwoodjs/web/apollo'
import FatalErrorPage from 'src/pages/FatalErrorPage'
import Routes from 'src/Routes'
import './index.css'
const goTrueClient = new GoTrue({
APIUrl: 'https://MYAPP.netlify.app/.netlify/identity',
setCookie: true,
})
const App = () => (
<FatalErrorBoundary page={FatalErrorPage}>
<AuthProvider client={goTrueClient} type="goTrue">
<RedwoodApolloProvider>
<Routes />
</RedwoodApolloProvider>
</AuthProvider>
</FatalErrorBoundary>
)
export default App
Time to use that API endpoint we copied from the Netlify Identity page. Replace the value of APIUrl
with your API endpoint. For example:
// imports...
const goTrueClient = new GoTrue({
APIUrl: 'https://gotrue-recipe.netlify.app/.netlify/identity',
setCookie: true,
})
That's all for configuration. Easy!