Questions tagged [subscription]

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

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

2251 questions
4
votes
1 answer

Paypal Subscription + Recurring Payment

I have some doubts regarding Paypal Subscription. We are hosting a website and we would like to give a subscription feature to our customers. We have implemented that with the sandbox subscription feature. It is working fine. We would like to add…
Anand Devaraj
  • 725
  • 4
  • 12
  • 22
4
votes
1 answer

Subscription runs in ngOnInit function after Component is destroyed and Revisited

I am running into a very strange situation with Angular Components and rxjs Subscriptions. I have the following ngOnInit and ngOnDestroy functions ngOnInit() { zip(this.service.getMessage, this.service.getType) …
chris
  • 2,490
  • 4
  • 32
  • 56
4
votes
4 answers

Best framework for a subscription-based web service business/site?

We're developing a new web service that will be free for low-volume users and subscription-based for higher volume users. Most users will probably invoke it via a plugin for their cms or blog system, and some will use api toolkits for various…
Rick Ross
4
votes
1 answer

Google play console orders charged 0

We've just launched our subscription-based app. We did thorough testing and everything was OK. However, when we lauched the production version something seems wrong. We have received purchases from users and validated them via the Google Play…
Joe Okatch
  • 660
  • 5
  • 9
4
votes
3 answers

Nuxt Apollo websockets link options?

I'm trying to get websocket subscriptions working with Nuxt Apollo. For my server (8base.com) I need to send along a connectionParams object with the subscription request. It seems Nuxt Apollo has a httpLinkOptions but what I really need is a…
Drew Baker
  • 14,154
  • 15
  • 58
  • 97
4
votes
0 answers

Subscription & Billing for SaaS providers (node.js based solution)

we are developing a SaaS (node.js) and struggling how we could manage our subscriptions and billing. First idea was Stripe, but there are limitations like no PayPal Integration, not covering all tax rules in Europe etc. Is there a solution in node…
pinguin
  • 59
  • 3
4
votes
0 answers

Stale token in Apollo Client subscriptions

I have working subscriptions and correct token in http link but I get stale token from the last session in the ws link. When I console log the connectionParams handler it gets executed only on page refresh so it's no wonder I get stale token. I…
4
votes
1 answer

how to setup test and production environment for apple iap server-to-server notification

I want apple send purchase notification of real user to my production environment after the app is published. And meanwhile, i need apple to send purchase notification of sandbox test account to my test environment. However, i can only config one…
tommy
  • 41
  • 1
4
votes
1 answer

How to make IAP purchase request with free trial period?

I am implementing subscription model to my app and I prepared everything. I created a Monthly Subscription product and a Yearly. Also I add a promotional offer for Monthly product. The promotional offer is 1 week free trial. When I try to purchase…
Savas Adar
  • 4,083
  • 3
  • 46
  • 54
4
votes
1 answer

How to support / offer iOS subscriptions with a free trial period?

I am working on shifting my existing iOS 10+ app to offer auto-renewing subscriptions. While "normal" subscriptions (no introductory offer) work fine both within my app and on my server (receipt validation and user account handling) I am having a…
Andrei Herford
  • 17,570
  • 19
  • 91
  • 225
4
votes
1 answer

What permissions are required for validating Google Store In-App Purchases?

I am trying to validate user purchase with the token received from the client (internal release). For that I am using Python script with Google Python API Client (https://github.com/googleapis/google-api-python-client). import httplib2 from…
UrK
  • 2,191
  • 2
  • 26
  • 42
4
votes
0 answers

iOS In-App Purchases: SKErrorDomain Code=0 returned when trying to redeem subscription offer within valid subscription period

Objective: I would like to redeem a subscription offer while an autorenewable subscription is currently active and not expired. What I've tried: I set up a Store Kit demo project on Xcode 10.2 in order to test out the new subscription offers. After…
4
votes
2 answers

Dynamically create Auto-Renewable Subscription

Our app was rejected in App Store because we were using 3rd party solution for subscription and was decided to use In-App Purchases ( Auto-Renewable Subscriptions). I went through several tutorials and it seems that the subscription has to be…
Tabula Rasa
  • 183
  • 10
4
votes
0 answers

iOS In-App Purchases getting stuck in 'Purchasing' state

I'm getting a weird error with in-app purchases for a project. The client’s reporting that when they purchase an auto-renewing subscription, nothing happens; logging indicates that the app is correctly adding the payment to the queue, but it never…
Jon Manning
  • 133
  • 1
  • 4
4
votes
1 answer

Check if a given event is subscribed, during runtime, using reflection

Consider a class that has some events. This event list is going to grow. Some are optional. Others are required. To simplify some initial validation I have a custom attribute that marks an event as a required one. For example: …
Bruno
  • 445
  • 4
  • 10