I'm encountering the same problem described on this question - Subscriptions Not Receiving Timeline Notifications.
The last time my app received a timeline notification was on 11/13.
Here's what I did:
Created my project using the ASP.NET Quick Start
Deployed the project to a public facing web server, with HTTPS (https://www.bsudevtech.myhosting.me)
When users authenticate on the web site, a timeline subscription is created - I have verified this by adding checkpoints throughout the app that insert a record into a backend SQL Server. I have also verified this using Jenny's comment on the original post - I can see the timeline subscription for my app, for my Google Account ID and the correct URL for notification posts.
From my Android app, I'm able to successfully create sharing contacts
From Glass, I can take a photo and share with one of those contacts
The photo is duplicated on the timeline
The photo never comes through the notification controller on the ASP.NET app and I do not see any hits to the controller in the IIS logs
I can send timeline items from my Android app and they appear on Glass, I just cannot get the "share photo" to work properly. When creating my share contact, here's what I used:
ID = unique ID for the contact
Display name
Image URL
Accept Types = image/jpeg and image/png
Sharing Features = "ADD_CAPTION"
I've added logging to the notification controller as well and none of the logging ever appears in my backend database, so coupled with the fact the page doesn't appear in the logs, it's not being called after the photo is shared with the sharing contact on Glass.
From the Playground, I can see the duplicate timeline item:
{
"kind": "mirror#timelineItem",
"id": "5ef229b1-708e-4a3a-a7c0-8a9451fc47ce",
"created": "2013-11-20T18:19:05.865Z",
"updated": "2013-11-20T18:19:08.984Z",
"displayTime": "2013-11-20T18:19:05.865Z",
"etag": "1384971548984",
"recipients": [
{
"kind": "mirror#contact",
"source": "api:143178395015",
"id": "28f773ad-bb35-4ffa-b07c-c2997a208528",
"displayName": "Educause",
"imageUrls": [
"https://apps.bsu.edu/androidservicehandler/images/traveler/glass_contact.png"
],
"priority": 1
}
],
"attachments": [
{
"id": "ps:5948400824138489778",
"contentType": "image/jpeg"
}
],
"menuItems": [
{
"action": "DELETE"
}
]
}
Any suggestions beyond those on the original post are welcomed!