I'm implementing in-app subscriptions using Google Play Billing Library. Everything works fine except one think, when I acknowledge purchase I set the developerPayload to some string value. Then I can see this value when querying purchases inside the app, but when I'm using Google Developer Api in my backend to verify subscriptions the developerPayload field is empty, all other fields are correct.
My backend is written in .NET core 2.2 and I'm using Google.Apis.AndroidPublisher.v3 library.
I've also checked that with python library and the result is the same.
This is how I prepare my acknowledge params, developerPayload is just a simple string with about 60 characters.
val params = AcknowledgePurchaseParams.newBuilder()
.setDeveloperPayload(developerPayload)
.setPurchaseToken(purchase.purchaseToken)
.build()
billingClient.acknowledgePurchase(params) { billingResult ->
...
}