android - Google Play subscription inconsistent auto-renewal -


my app using /androidpublisher/v1 of googleapis validate google play subscriptions. (will upgraded v2 in near future)

every month every user subscription automatically renewed, , new receipt response api of following type:

{  "kind": "androidpublisher#subscriptionpurchase",  "initiationtimestampmsec": "<start timestamp>",  "validuntiltimestampmsec": "<expiration timestamp>",  "autorenewing": ***true*** } 

however, ever since 19/05/15 - following scenarios started occurring - @ end of every subscription, we're getting following response:

{  "kind": "androidpublisher#subscriptionpurchase",  "initiationtimestampmsec": "<start timestamp>",  "validuntiltimestampmsec": "<expiration timestamp>",  "autorenewing": ***false*** } 

which means subscription had not been renewed , therefore cancelled. however, after attempt resend latest receipt google again, once again receiving valid receipt, new expiration:

{  "kind": "androidpublisher#subscriptionpurchase",  "initiationtimestampmsec": "<start timestamp>",  "validuntiltimestampmsec": "<***new*** expiration timestamp>",  "autorenewing": ***true*** } 

is new issue old google api? has else experienced such issue?

according google developers support, have indeed found bug had caused issues around dates mentioned above.

this has been fixed around beginning of june.


Comments

Popular posts from this blog

angularjs - ADAL JS Angular- WebAPI add a new role claim to the token -

php - CakePHP HttpSockets send array of paramms -

node.js - Using Node without global install -