79379276

Date: 2025-01-22 21:43:02
Score: 0.5
Natty:
Report link

The problem was in the property I used to declare the response URI :

Calendar.Events.Watch watched = calendar.events().watch(
                "primary",
                new Channel()
                        .setId(uuid)
                        .setType("web_hook")
                        .setAddress(uri.toURL().toString())
        );

Notice the change : setAddress(uri) instead of setResourceUri(uri)

Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Lovegiver