This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function addLinkedInPostsToCalendar() { | |
// 🔹 STEP 1: Define your Google Calendar | |
var calendarId = "YOUR_CALENDAR_ID@GMAIL.COM"; // 🔄 Replace with your Google Calendar ID | |
var calendar = CalendarApp.getCalendarById(calendarId); | |
// 🔹 STEP 2: Get the correct Google Sheet and data range | |
var sheet = SpreadsheetApp.getActiveSpreadsheet().getSheetByName("YOUR SHEET NAME"); // 🔄 Replace with your sheet name | |
if (!sheet) { | |
Logger.log("❌ Sheet not found. Please check the sheet name."); | |
return; |