4

Is there any URI scheme or protocol for time events? For example, for location is the geo URI scheme, which will open Google Maps or any other map application in mobile devices. I want something similar, but for opening Google Calendar or any other event manager application.

Is there an URI scheme for that? If yes, which one? If no, how could I achieve that?

PS: I want this for a mobile web app, no native code involve.

unor
  • 92,415
  • 26
  • 211
  • 360
Yerko Palma
  • 12,041
  • 5
  • 33
  • 57

1 Answers1

3

I haven't been able to find any URI Schemes for time events, I have tried cap:// and webcal:// with no success. But maybe you can use the mimeType 'text/calendar' for this instead.

If what you want is to open the google calendar app, you can use the URI Scheme for google calendar: comgooglecalendar:// or the specific google calendar path. In case you want the native iOS calendar you should use calshow://.

Community
  • 1
  • 1
Akronix
  • 1,858
  • 2
  • 19
  • 32