The New Notion API | Node.js Video Schedule Project

preview_player
Показать описание
In this video, we will create a Notion calendar database and use the API and SDK/client to fetch the data and display it on a web page

Code:

Notion Developers/API Website:

Notion JS SDK:

Udemy Courses:

💖 Support The Channel!

Timestamps:
0:00 - Intro
1:55 - Add Video Data in Notion
4:25 - Explore API & Create Integration
7:03 - Using the SDK/Client
11:47 - Fetch Video Data & Construct Object
21:22 - Create Endpoint with Express
23:50 - Creating the Frontend
Рекомендации по теме
Комментарии
Автор

Notion is one of my favorite tools. So glad this API integration exists. Thank you Brad for sharing

Aaronmoreno
Автор

Once I see Brad post new video. The excitement is unexplainable 😇

salimsuleiman
Автор

Love your videos, I'm nearly done with your Node js API masterclass with express and Mongo DB, you are literally the most down to the point Udemy instructor. You are the only one that could teach me Backend JavaScript thanks so much

JMuks
Автор

For those getting stuck on 400 bad request:

Add 'Notion-Version: 2021-05-13' to the headers in postman to go along with the bearer. 
'Notion-Version' is the key, '2021-05-13' is the value.

mmbower
Автор

I found out about this just yesterday and was wondering how I could use it to build something good and my wish came true. Thanks, Brad.

You make everything seem easy!

I aslo wanted to say, your videos are very relaxing to watch, especially your voice, very soothing for my brain and I'm not the only one, many folks in my bootcamp (Learn with Leon on Twitch) say the same thing. We watched your Reach Crash Course!

kieran
Автор

dont u just love when you get a notification from Brad :)

ladywebber
Автор

In minute 11:00 use this instead, this because the code is deprecated


const notion = new Client({ auth: process.env.NOTION_API_KEY });

(async () => {
const response = await notion.search({
filter: {
property: 'object',
value: 'database',
},
});
console.log(response);
})();

Eznus
Автор

The Man, the Myth, the Master! Brad will be a legend for generations!

vrlassiter
Автор

Thanks for the video, Brad. While I don't see myself having a need for this API, it did show me the existence of Notion and I was actually looking for something like this.

delvorin
Автор

Took me forever to get around to doing this tutorial but glad I finally did - thanks!

innoc
Автор

So looking forward to see all the cool things that can be done with this API. I know people have been waiting for a while for it’s release.

attracdev
Автор

As always, awesome content. Been a while since u post MEAN stack, would be very useful since lots of things have changed

mikiasketema
Автор

I`ve got no idea about notion, what it is or what to use it for ... But I will very soon :) When the man who jumpstarted my career discusses a new topic, it is going to be a great time, for sure ! :) Much love from Germany to the legend himself!

erikbaer
Автор

This is awesome stuff brad, will actually might do this for my site, cheers for the tut man

jasonshen
Автор

It's only on this channel where you can get this kind of content. Brad is a trend setter, he leads others follow

godfreyndiritu
Автор

Great video as always! I'm excited to start integrating notion with more of my projects!

dpklabs
Автор

I was just messing around with notion API and saw your video notification LOL

sahilm
Автор

Can you please make a video to create a website using Next JS/Gatsby + Netlify + Notion as CMS?

TheRn
Автор

for those who are struggling to get a response with a status 200 OK. what I noticed in my case, It's only working if you are using Notion predefined templet pages, it's not working with pages in which we change format according to us. not sure but in my case it looks like that.

ruchajoshi
Автор

Omg they finally released an API?? That was the only reason I stopped using it at the time because the app looked great.

I’ll definitely check it out again now.

DodaGarcia