Questions tagged [subscription]

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

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

2251 questions
6
votes
1 answer

Redux Toolkit Query Graphql + Subscriptions

I really love graphql + rtk query but I cant get the graphql subscriptions working. I almost directly copied the streaming update example from the redux documentation. But I get the error subscriptions are not supported over HTTP, use websockets…
Wiezalditzijn
  • 443
  • 3
  • 17
6
votes
1 answer

StoreKit 2 subscription status empty on WatchOS

I have StoreKit 2 code that works on iOS 15, but fails in WatchOS 8. I'm making a standalone WatchOS app that has a subscription. I took the code that fails and created an iOS app, where it works fine. I'm testing with the simulated Store in…
EPage_Ed
  • 1,173
  • 11
  • 11
6
votes
5 answers

'this.Client.SubscriptionId' cannot be null

We noticed that our Azure Subscription field is empty eg: Get-AzContext -ListAvailable Name Account SubscriptionName Environment TenantId ---- ------- …
Mike Wilcox
  • 99
  • 1
  • 1
  • 5
6
votes
1 answer

Paypal subscription confusion

I've been working on a project for over 2 years and I am finally ready to launch, but first I have to integrate a subscription based payment option so I can actually make some money off of this thing. I've been trying to integrate paypal…
John
  • 976
  • 1
  • 15
  • 21
6
votes
2 answers

FHIR Subscription not working in hapi-fhir

I'm using this hapi-fhir v4.2.0 server with jpa and it's working just fine. I have added a few patients and I'm able to GET/POST requests to my hapi-fhir localhost environment. I'm also able to create a subscription using this URL:…
ncesar
  • 1,592
  • 2
  • 15
  • 34
6
votes
0 answers

Stripe - downgrade at period end using schedules

I want to downgrade a customer at the end of the current period. When that happens. I am aware of the method of setting a trial end to the current period end and setting proration_behavior to none, and finally setting up a webhook to listen to…
user5365075
  • 2,094
  • 2
  • 25
  • 42
6
votes
4 answers

Charge tax using PayPal Subscriptions API

As an EU based seller I need to charge tax based on customer country tax rates and rules. That means that when I create subscription I need to specify either tax rate (percentage or amount) or have the ability to override subscription price. When…
Luka Peharda
  • 1,003
  • 8
  • 18
6
votes
3 answers

My Apollo Server's Subscription doesn't works: Cannot read property 'headers' of undefined

I tried to used it with the context connection, and adding the subscription params into the Apollo Server but it doesn't work. Is my first time using Apollo Server Subscriptions and i don't know if the error is in the server configuration or in the…
6
votes
5 answers

Subscription based software: Does it work?

A while back I worked with a software company that sold a specialized software product. Ever so often they would release a patch for free and a new version that would require an upgrade fee. This is typically how the software industry works. After…
Dscoduc
  • 7,714
  • 10
  • 42
  • 48
6
votes
1 answer

Angular - two subscriptions in ngOnInit result in object 'undefined'

In short.. I am not able to access my news object. It is coming back as 'undefined' when called in a function. In my ngOnInit I have two subscriptions. First one returns a news object (which is defined as a global variable at the top of the…
6
votes
1 answer

How to use iOS subscriptions with existing subscription web service?

While there is a lot of information out there about how to implement iOS subscriptions in general I found no information on how to use them with an existing subscription web service. Lets assume we are running a newspaper website where users can…
Andrei Herford
  • 17,570
  • 19
  • 91
  • 225
6
votes
2 answers

How do I handle recurring/subscription billing in a Rails App?

I can't use Chargify, Recurly, Spreedly or any of those apps because I am not based in the US. I am in Jamaica, actually...so many of these companies don't support Jamaica. But I am trying to roll a custom subscription management solution - but…
marcamillion
  • 32,933
  • 55
  • 189
  • 380
6
votes
2 answers

Never Get RENEWAL Notification Type on Apple statusUpdateNotification

I created an API to be called by Apple webhook to work with subscription. I've set the API url in Itunes to be called by the webhook. According to Apple help site https://help.apple.com/app-store-connect/#/dev7e89e149d in regards to the Testing…
muhihsan
  • 2,250
  • 6
  • 27
  • 42
6
votes
4 answers

Application logic for invoicing and subscriptions?

We're just in the planning stage of a web app that offers subscriptions to our customers. The subscription periods varies and can be prolonged indefinitely by our customers, but are always at least one month (30 days). When a customer signs up, the…
Industrial
  • 41,400
  • 69
  • 194
  • 289
6
votes
3 answers

Get the user ID in WooCommerce Subscriptions

I am using WooCommerce Subscriptions plugin and I am trying to get the customer or userid of a given wc_subscription. Here is the code I have been using but fails: add_action( 'woocommerce_scheduled_subscription_trial_end',…