Today
Sun
Mon
Tue
Wed
Thu
Fri
Sat
Events for Today
No events for this date
Calendar
Reviewing Q3 deliverables and feature scope with product team.
Finalizing milestone terms for Q3 web application development sprint.
Official deployment of complete workspace modules to production servers.
No timeline entries yet
Create your first event to see it appear here
Events
Danger Zone
This will permanently delete the event. You can't undo this action.
Tip: Swipe left on event for quick delete.
Developer Hub
Register your app at Google Cloud Console. Add the redirect
URI: https://mayank.wiki/mindvora/auth-handler
// Redirect to Google OAuth
const url = "https://accounts.google.com/o/oauth2/v2/auth?" +
new URLSearchParams({
client_id: YOUR_CLIENT_ID,
redirect_uri: REDIRECT_URI,
response_type: "code",
scope: "calendar.readonly drive.file contacts.readonly",
access_type: "offline"
});
// Fetch primary calendar events
const response = await fetch(
"https://www.googleapis.com/calendar/v3/calendars/primary/events", {
headers: { Authorization: `Bearer ${access_token}` }
});
// List user files
const response = await fetch(
"https://www.googleapis.com/drive/v3/files?pageSize=10", {
headers: { Authorization: `Bearer ${access_token}` }
});
// Fetch connection names
const response = await fetch(
"https://www.googleapis.com/people/v1/people/me/connections?personFields=names", {
headers: { Authorization: `Bearer ${access_token}` }
});
Mindvora Learning
Found 0 new events