0

is there a way to send google calendar event invitation link(Dynamic link or deep link) via sms,

if yes, how can we do it programmatically.

ex:- i have created by brothers birthday event in my phones calendar, now i wana share it with my family members via sms, create a event link in sms which adds event to their google calendar.

Manu
  • 147
  • 2
  • 12

1 Answers1

0

There is no ad-hoc implementation of sending/sharing event invites through SMS even from the Sharing and Attendees. Maybe if you can find a way to send this link through SMS:

//CALENDAR_ID is your email
//day&dates format is YYYYMMDD
  https://calendar.google.com/calendar/embed?src=yourpersonalemail@gmail.com&mode=day&dates=20170203/20170203

then the receiver can copy the link, paste it to his browser and add the event to his calendar. As of now, this the SMS support that Calendar API provides is SMS reminders:

"sms" - Reminders are sent via SMS. These are only available for Google Apps for Work, Education, and Government customers. Requests to set SMS reminders for other account types are ignored.

Community
  • 1
  • 1
ReyAnthonyRenacia
  • 17,219
  • 5
  • 37
  • 56
  • Thanks @noogui... i will try using the link you have provided and let you know... thanks again :) – Manu Feb 02 '17 at 04:55