Questions tagged [subscription]

An arrangement to receive something, typically a publication, regularly.

An arrangement to receive something, typically a publication, regularly.

2251 questions
2
votes
1 answer

How can i integrate stripe recurring in react and express with custom checkout page?

I am working on a project where I have to integrate Stripe Recurring Payment with custom checkout page. I tried many ways but nothing is working. I hope i get a answer here. Also Please someone help me with how to store payments every month in data…
2
votes
0 answers

graphql subscriptions with neo4j

I'm coming to you because I've got a big problem. I'm coding a live-forum with a graphql api. I use neo4j-driver, @neo4j/graphql and @neo4j/graphql-ogm in nodejs. As a real-time app, my project must use subscriptions to perform his prime function.…
2
votes
1 answer

websocket subscription server not working. unable to reach subscription server graphql-ws ws

i follow the [same documentation code][1] for creating subscription server using websocket graphql, put it doesn't work with graphql-ws and ws the code worked when i removed the serverCleanup definition, and it also woks well for older subscription…
entesar
  • 929
  • 1
  • 8
  • 12
2
votes
1 answer

WooCommerce Subscription hide buttons for specific products

Based on that question: Disable cancel subscription for a specific product in WooCommerce we try to adjust the code becasue this code here does not 100% fit for our needs. We created the code below to hide subscription buttons on myaccount page but…
Nik7
  • 346
  • 2
  • 16
2
votes
1 answer

Is it possible to give away a apple content subscription code?

I know that as a developer you can give away codes so that users can download your app for free. Is it possible to do the same for a subscription to content within an app?
willcodejavaforfood
  • 43,223
  • 17
  • 81
  • 111
2
votes
1 answer

How to subscribe to an observable as side effect?

I have a method which calls a another service to play a stream url within a player. playStream$() returns some streaming data which should be returned from the play$() method as well. As a side effect while playing a stream, i want to send a…
schaenk
  • 633
  • 1
  • 6
  • 17
2
votes
0 answers

Testing StoreKit auto-renewing subscriptions locally, expiration date is always nil

I am trying to test auto-renewing subscriptions in my iOS app locally with StoreKit using Xcode 13.1 by the way of local receipt validation. I am using a StoreKit configuration file to test the subscriptions. I do the auto-renewing subscription…
Luke
  • 965
  • 8
  • 21
2
votes
3 answers

How to check user already used FREE Trial In-App Subscription

I am creating an app in which i need to update UI based on Google Play Subscriptions I have two cases in which i have problem is user used Free Trial Subscription Is user used Introductory based Subscription or not I know it will automatic adjust…
Vikas
  • 432
  • 4
  • 17
2
votes
1 answer

Purchase Token data is same after i cancelled the subscription in Flutter

Hi i am new to flutter and i have integrated Auto Renewal subscription in flutter using this dependency. https://pub.dev/packages/flutter_inapp_purchase I have done sandbox Yearly auto renewal subscription so it will auto renew at every 30 minutes a…
2
votes
1 answer

Why does my rxjs subscription fail to close after completing

We have an rxjs subscription that's failing to close. I'm wondering if this is a bug in the rxjs library or if we're doing something wrong. Our code looks like this: private loadGroups(): void { if (this.groupOptionsSubscription?.closed ===…
gib65
  • 1,709
  • 3
  • 24
  • 58
2
votes
1 answer

How to avoid observable calculation on each subscription?

I have the next code: this.currency$ = combineLatest([ this.currency.valueChanges, // Currency ID Form Control (selected currency id) this.currencies$, // A list of currencies, that is loaded from backend ]).pipe( map((result: [number,…
Sergej
  • 2,030
  • 1
  • 18
  • 28
2
votes
0 answers

Old receipt information is retrieved for in app purchases for test users

I am using Auto-renewable subscriptions on my app and I am using sandbox users to test it with and for the first time purchase of an auto-renewable product in the app, its working fine, and the product gets renewed for the 6 times successfully…
2
votes
2 answers

How to handle an array of inner subscriptions with rxjs without nested subscriptions

I have prepared this example on Stackblitz for my question. In this Angular app, I have a NestedSolutionComponent with my current working solution and an AppComponent, where I want to achieve the same result by using proper rxjs operations. For a…
Steven X
  • 394
  • 1
  • 3
  • 14
2
votes
2 answers

Paypal Subscription : Adjustment of the amount on revised plan

In the paypal subscription, we have integrated the revised subscription feature for our system. Subscription flow working fine, but when the user upgrade or downgrade their plans in mid of the subscription cycle, do we have any option to adjust…
2
votes
2 answers

angular rxjs subscriptions

i am declaring a subscription in Angular like this: counterSubscription: Subscription and it is giving me this error: Property 'counterSubscription' has no initializer and is not definitely assigned in the constructor. So what could be the…