Hello,
I want to create a watchface that shows your next calendar events.
I don't want to build a companion app, so I just created an Oauth flow that asks for google calendar read-only events permissions. The have created also a small endpoint that reduces the amount of data send by the google API.
Now I'm looking for proper examples of implementing the Oauth flow for my watch face and I can't find any proper reference on the developers guide. Where is the complete flow example? The only example I found is the strava api, and for my understanding, it makes some unnecessary extra steps like creating a behavior delegate that does nothing (why do they do that) and show a login screen. I don't want to sow a login screen, If the user is not logged, then I will show nothing and that's enough for my project.
Can I just register directly for oauth on app initialization? Should I provide a delegate ven if I don't need it?
Thanks for your help