Name | Progress |
---|---|
Introduction | Not Read |
🍰 Player | Not Read |
Name | Progress |
---|---|
Software Installation | Not Read |
Project Setup | Not Read |
Running and Testing | Not Read |
React and ReactDOM | Not Read |
💡 Assignment 1: Welcome Message | Not Attempted |
Submissions | Not Read |
Name | Progress |
---|---|
JSX and Components | Not Read |
Props | Not Read |
👾 Exercise: Props | Not Attempted |
CSS Styles | Not Read |
useState and Hooks | Not Read |
👾 Exercise: useState | Not Attempted |
Conditional Rendering | Not Read |
Lists | Not Read |
👾 Exercise: Lists | Not Attempted |
Forms and Events | Not Read |
👾 Exercise: Forms | Not Attempted |
💡 Assignment 2: Front End | Not Attempted |
Name | Progress |
---|---|
Pure Components - memo | Not Read |
Lifecycle - useEffect | Not Read |
Expensive? - useMemo | Not Read |
DOM Interactions - useRef | Not Read |
forwardRef | Not Read |
useImperativeHandle | Not Read |
👾 useImperativeHandle | Not Attempted |
Context | Not Read |
useCallback | Not Read |
useId | Not Read |
useReducer | Not Read |
Name | Progress |
---|---|
Database | Not Read |
NextAuth and Github Authentication | Not Read |
Prisma and ORM | Not Read |
Project Setup | Not Read |
Project Authentication | Not Read |
Name | Progress |
---|---|
tRPC | Not Read |
tRPC - Routers | Not Read |
tRPC - Server Rendering | Not Read |
tRPC - Client Rendering | Not Read |
Persisting Data | Not Read |
Assignment 3: APIs | Not Read |
In the previous section, we set up the NextAuth with a Github provider. In this section, we want to show you, how easy it it to authenticate your users using NextAuth package.
Please run your project using:
pnpm dev
Then visit the main page at http://localhost:3000. If you signed in previously, please sign out clicking on the “Sign Out” button. If you see the “Sign In” button, you are ready to proceed.
To authenticate a current user all you need to do is to import and call the following function (add it at the top of your src/app/api/tasks/route.ts file):
import { getServerAuthSession } from "~/server/auth";
Then, you can modify your listTasks route handler as following:
import { NextResponse, type NextRequest } from "next/server";
import { getServerAuthSession } from "~/server/auth";
// In-memory data store for tasks
const tasks = [
{ userId: '1', id: 1, description: "Complete the project report", completed: false },
{ userId: '1', id: 2, description: "Clean the house", completed: true }
];
async function listTasks(req: NextRequest, res: NextResponse) {
// check if user is logged in
const session = await getServerAuthSession();
// only logged in users can view their tasks
if (session == null) {
return NextResponse.json({ message: "Unauthorized" }, { status: 401 });
}
return NextResponse.json(tasks.filter((task) => task.userId === session.user.id));
}
Please save the file and observe in terminal that tyour server was automatically reloaded.
Please run the following command:
curl http://localhost:3000/api/tasks
You should now recieve the following error:
{"message":"Unauthorized"}
Now, open your project in the browser, navigating to http://localhost:3000 and sign in using your github credentials. Try the following command again:
curl http://localhost:3000/api/tasks
OH OH! Still unauthorised! What's going on!
Well, the problem is, that when you login, your login cookie is issued and stored in your browser. Your terminal does not have access to this cookie. So, how can we solve it?
Just like your terminal, you can run commands in your browser developer console. The commands are “javascript” and not “bash” command. Please open your developer console by pressing “CMD+SHIFT+I” on Mac or “ALT+SHIFT+I” on Windows. Then, open your “console” by click on the “console” tab. In the console type the following command and press enter:
await (await fetch("/api/tasks")).json()
The result should look like the following:
It's not very exciting, but we are now using the user's credentials to receive only the user's tasks!
We know that the browser has the information about the logged-in user. This information is stored in the browser “Cookie”. We need to extract and reuse that cookie. Please re-open your browser console, and this time, open the “Application” tab. On the left, under the “Storage” section, expand the “Cookies” section and then click on “http://localhost:3000”. You should see the following:
There might be some more cookies, but we are after the “next-auth.session-token,” so please copy its entire value. My value of the session token is the following:
176e99d3-2fe2-4464-a047-4fdeb3dfe276
We are now ready to send authorised requests to our API backend by including the value of this cookie in the curl request. Please run the following command, replacing the value of the cookie with your session token from above.
curl http://localhost:3000/api/tasks --cookie "next-auth.session-token=YOUR_SESSION_TOKEN"
💰 PROFIT! You are now able to send authorised requests
Please complete the rest of the handlers to use authentication