Questions tagged [subscriptions]

354 questions
7
votes
2 answers

How to find out WHEN a user bought the app / installed it for the first time (possible without UDID?)

I would like to find out when a user first bought my app... so far, I havent found a clean way and a UDID seemed to be the only option. Ideally there would be a receipt I can get via StoreKit but so far.. nada have I missed something ? Does anybody…
Daij-Djan
  • 49,552
  • 17
  • 113
  • 135
7
votes
1 answer

Getting the expiration date for Google Play In-App Subscriptions

The implementation of the new in-app subscription product for Android apps seems identical to regular managed/unmanaged products, but (afaik) getting the expiration date for subscriptions is only available through the Google Play Android Develope…
M Dapp
  • 1,453
  • 16
  • 31
6
votes
1 answer

iOS: CKFetchNotificationChangesOperation results incomplete

I'm building an iOS app that heavily relies in CloudKit as a data source. After installing the app and running it for the first time, I need to download a great amount of data that resides in the public database of my CloudKit Container. I do this…
Joris416
  • 4,751
  • 5
  • 32
  • 59
6
votes
0 answers

Can iOS App Manage Multiple Auto-Renewable Subscriptions?

We'd like to support in our app several distinct auto-renewable subscriptions. For example, subscribe to feature A for a year, feature b for a year, feature c for a year. We want the subscriptions to be separate and allow users to subscribe to one…
user3307029
  • 87
  • 1
  • 9
6
votes
6 answers

How to set Next Payment date in Woocommerce Subscriptions?

I would like to change the next payment date of active subscriptions after the Initial (first) order was created. current code which does not work. Why? What am i missing? //fires when new order payment is complete (NOT RENEWAL but original…
SgtPepperAut
  • 123
  • 1
  • 3
  • 10
6
votes
0 answers

Suggestion on a subscription based database schema

I'm creating a subscription based service with payment gateway, discounts and other feature. I am stuck at a point on how to manage the subscriptions, transactions and invoice. My tables are: (I've listed only the relevant tables below…
tanay jha
  • 349
  • 3
  • 11
6
votes
4 answers

How to wait on Meteor.users when changing profile field

I'm using the profile field in Meteor.users system defined collection to store information about the last message user read on every communication channel with the following structure: profile : { lastMsgRead : [ {channelId:…
massimosgrelli
  • 121
  • 1
  • 7
6
votes
1 answer

unable to save or cancel subscriptions using Stripe

Using stripe's API with Ruby on Rails I am unable to save subscriptions. I am able to retrieve and update and save customer objects: customer = Stripe::Customer.retrieve(some_customer_id) #this works customer.save #this works I am also able to…
jco40
  • 297
  • 3
  • 9
6
votes
1 answer

What is the proper reserved product ID to test in-app subscriptions with Android?

Per Google's documentation on 'Testing In-app Billing', there are four reserved product IDs to be used for in-app testing of the billing and subscription…
esilver
  • 27,713
  • 23
  • 122
  • 168
5
votes
3 answers

iOS auto-renew expired at the end of current subscription period

I ordered a auto-renew product, After 5 minutes ,it become expired! I think in Sandbox 5 minutes is equal to 1 month, At the end of current subscription peroid(after 5 minutes), it should't be auto-renewed? but it become expired.
Db Xiong
  • 107
  • 1
  • 9
5
votes
2 answers

Is there an easy way to check the status of the user's Subscription on the App Store, or the only way is to do a receipt and Subscription validation?

Does anyone know the easy way to check if the user already purchased a subscription or not when the app loads? I just need to check if the user already purchased the subscription, nothing else. Seems easy, but it is not in reality, because I need to…
Adelmaer
  • 2,209
  • 3
  • 22
  • 45
5
votes
2 answers

Is it possible to directly consume the Google Play BillingClient from a Xamarin Android app?

I'm working on integrating subscriptions into a Xamarin Android app. All the examples I can find online specific to Xamarin use the Plugin.InAppBilling from Montemagno, et al. This is certainly very convenient, but just for the sake of due…
Brian Rak
  • 4,912
  • 6
  • 34
  • 44
5
votes
1 answer

How to solve webSocket error in GraphQL subscription server

I basicely created express server and then added SubscriptionServer. /* * GRAPHQL SERVER */ const graphqlServer = express() graphqlServer.use(cors()) graphqlServer.use('/graphql', bodyParser.json(), graphqlExpress({ schema: schema…
Verquido
  • 99
  • 1
  • 7
5
votes
0 answers

Integration tests for graphql subscriptions

How can i go about testing the publishing/subscriptions of my graphql schema, without using apollo? Is it possible to just do it with subscriptions-transport-ws ? My SubscriptionServer is setup with default settings, i'm able to see the publish…
dazraf
  • 71
  • 5
5
votes
1 answer

iOS - Auto Renewable Subscriptions Expiry

Question 1: I have read the Apple docs regarding subscriptions but I'm still unsure if it's possible to get the expiry date for an auto-renewable subscription from the receipt without contacting Apple servers as of iOS 9? Does this makes…
Nokiaowner
  • 181
  • 2
  • 11
1 2
3
23 24