Subscription handling complexity

235 Views Asked by At

I create a google glass app with custom menu using mirror api. But when I click the menu it shows a synchronization icon over timeline item and the timeline becomes first position of my app.

But I cannot get the menu's click event from my notification servlet. And the Redirect Uri are:

http://localhost:8080/oauth2callback
http://localhost:8080
https://mirrornotifications.appspot.com/forward?url=http://localhost:8080/notify   

How can I solve it?

2

There are 2 best solutions below

2
On BEST ANSWER

Timeline subscriptions will not work with localhost — the callback URLs must be to a server that is publicly visible to the Mirror API servers that are pushing the notifications and must also support SSL.

So to test subscriptions in development, you have a couple options:

  1. Deploy to a staging server
  2. Try one of a handful of localhost proxies that are available
  3. Use curl as described in this post to manually push the notification payload to your callback URL

I've found during my own development that #3 was the easiest, but as your application gets more complex you may want to look into the other options.

0
On

I think you're mixing up two different concepts here.

The Redirect URLs are used as part of the OAuth dance and are only important as part of a user for your Glassware authenticating themselves to your service.

You will, however, also need to subscribe to notifications in order to receive information about the menu commands. This isn't done through the API console but, instead, you will need to issue a subscriptions.insert command as documented at https://developers.google.com/glass/v1/reference/subscriptions/insert. Your Glassware only needs to do this once, however, although it may wish to update subscriptions.