How to Use Notion with Gmail and Google Sheets using Apps Script
Notion, my absolute favorite tool for storing all sorts of things from web pages to code snippets to recipes, just got better. They’ve released a public API and thus it will be a lot easier for developers to read and write to their Notion workspace from external apps.
For instance, you can create a document in Google Docs and export it to Notion while staying inside Docs. Google Sheets users can pull pages from Notion database into their spreadsheet. Any new submissions in Google Forms can be directly saved to Notion and so on!
Save Gmail Messages in Notion
I have put together a Gmail add-on that makes it easy for you to save email messages, or any other text content, from Gmail to your Notion workspace with a click. Here’s how the app works.
Step 1: Connect Gmail to Notion
Step 2: Allow Access to Notion pages - if you have multiple databases in your Notion workspace, you have an option to grant access to select databases and the rest will be inaccessible to the external app.
Step 3: Choose Email - open any email message in Gmail and you’ll have an option to edit the content of the email subject and body before sending the content to your Notion page. Please note that the app only supports plain text format at this time.
Step 4: Open Notion - As soon as you hit the Send to Notion
button, the content of the currently selected email message is added to your Notion database. You can click the All updates
link in your Notion sidebar to view to recently added page.
If you would like to try this Gmail to Notion app, please get in touch.
How to Use Notion with Google Apps Script
If you would to integrate your own Google add-on with Notion API, here’s a brief outline of the steps involved.
-
Go to notion.so and click the
Create New Integration
button. You’ll be provided with a Client ID and Client Secret that you’ll need in a later step. -
Include the OAuth2 library in your Apps Script project and invoke the
getRedirectUri
method to get the OAuth2 redirect URL for the previous step.
const getNotionService = () => {
return OAuth2.createService("Notion")
.setAuthorizationBaseUrl("https://api.notion.com/v1/oauth/authorize")
.setTokenUrl("https://api.notion.com/v1/oauth/token")
.setClientId(CLIENT_ID)
.setClientSecret(CLIENT_SECRET)
.setCallbackFunction("authCallback")
.setPropertyStore(PropertiesService.getUserProperties())
.setCache(CacheService.getUserCache())
.setTokenHeaders({
Authorization: `Basic ${Utilities.base64Encode(
`${CLIENT_ID}:${CLIENT_SECRET}`
)}`,
});
};
const authCallback = (request) => {
const isAuthorized = getNotionService().handleCallback(request);
return HtmlService.createHtmlOutput(
isAuthorized ? "Success!" : "Access Denied!"
);
};
const getRedirectUri = () => {
console.log(OAuth2.getRedirectUri());
};
- Connect to Notion API - Make a
Get
HTTP request to the /vi/databases to fetch a list of all databases that the user has explicitly shared with authorized app.
function getDatabasesList() {
var service = getNotionService();
if (service.hasAccess()) {
const url = "https://api.notion.com/v1/databases";
const response = UrlFetchApp.fetch(url, {
headers: {
Authorization: `Bearer ${service.getAccessToken()}`,
"Notion-Version": "2021-05-13",
},
});
const { results = [] } = JSON.parse(response.getContentText());
const databases = results
.filter(({ object }) => object === "database")
.map(({ id, title: [{ plain_text: title }] }) => ({ id, title }));
console.log({ databases });
} else {
console.log("Please authorize access to Notion");
console.log(service.getAuthorizationUrl());
}
}
Gmail to Notion - Try the App
The Gmail to Notion app is in private beta. If you would like to use it with your Gmail or Google Workspace account, please get in touch for an invite.
from Digital Inspiration https://ift.tt/2Rj2VbO
Comments
Post a Comment