couldn't receive google glass notification after subscription?

225 views Asked by At

I have created a timeline card with menu item and subscribed the same.When i try it(clicked the menu item) from mirror api playground ,it shows notification send but my service couldn't receive any notification.Its not showing any sign of hitting my service log also.

Below is my subscription json.

{
"kind": "mirror#subscription",
"id": "timeline",
"updated": "2013-12-19T06:27:20.269Z",
"collection": "timeline",
"operation": [
"UPDATE"
],
"callbackUrl": "https://mirrornotifications.appspot.com/forward?url=http://192.xxx.xx.xxx:8080/GlassService/google/service/get_balance",
"verifyToken": "example_user",
"userToken": "email"
}

instead of ip address in the callback url i tried with localhost also.i got same result.

Please help me with this.

Thanks in advance.

1

There are 1 answers

4
Moddasir On

Google subscription does not support local url or proxy. You have to submit public url with SSL support for callback Like "https://www.yourdomain.com/yourmethod".

Another way is, you can use "Introspected tunnels to localhost". then your local url become public and you will get notification after subscription.