Questions tagged [subscription]

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

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

2251 questions
3
votes
0 answers

How to handle multiple users purchasing a subscription from a single Apple ID, or group them based on subscription group?

Currently, we want to implement auto-renewable subscriptions on iOS. We face a problem where users can purchase multiple subscriptions on a single Apple ID linked to the device. We are having 3 subscription plans as Regular (Monthly), Regular…
Sagar Mehta
  • 415
  • 2
  • 6
  • 18
3
votes
1 answer

PayPal Subscription Revise Error UNPROCESSABLE_ENTITY

To revise a paypal subscription I use the following curl translated to php: curl -v -X POST https://api-m.sandbox.paypal.com/v1/billing/subscriptions/I-BW452GLLEP1G/revise -H "Content-Type: application/json" \ -H "Authorization: Bearer…
fixxel
  • 177
  • 8
3
votes
1 answer

How to create subscription service using Django

I am working on a Django application. I need to include subscription service in the application. I am using the fields is_subscribed, subscription_start and subscription_end in the user profile models. I am using Razorpay for the payment…
Tony stark
  • 198
  • 7
3
votes
1 answer

Canceling Stripe subscription throws scheduling error

I recently increased the prices of my Stripe subscription plans on my Laravel SASS application. Now, when a user cancels their subscription, it throws the following error: "The subscription is managed by the subscription schedule…
M. Kressel
  • 101
  • 6
3
votes
0 answers

Changes to subscription settings on Google Play Console

I'm having a notification on my app on Google Play Console. I do not intend to use the subscription service in my app, despite having read both the blog and the Android documentation, I don't know how I can disable the service, if it will interfere…
3
votes
1 answer

How to get the WooCommerce Subscription parent ID in the renewal order admin email?

Because we send our WC Order Mails straight to our CRM i need the Subscription parent ID of the subscription renewals like echo 'shop_orderid===' . $order->id . '___
'; // Order ID I found $parent_id = $order->get_parent_id(); but that doesnt…
3
votes
1 answer

Google API Developer: purchases.products.get is ignoring productId value and always returns 200

When call GET method on https://www.googleapis.com/androidpublisher/v3/applications/{packageId}/purchases/subscriptions/{productId}/tokens/{token} it is ignoring productId value and always returns 200, whether its the correct product id or not,…
3
votes
0 answers

How to find the Purchase state in the new Sell Subscriptions API?

When integrating the Google Play Billing Library, how to know the state of a subscription? I want to know what of the below states is it, base on the Sell Subscriptions lifecycle. Active Cancelled In grace period On hold Paused Expired To be more…
Ilya Gazman
  • 31,250
  • 24
  • 137
  • 216
3
votes
2 answers

How to handle multiple users in In-App Billing Library ? (Best Practice)

I am implementing Google's In-App Billing Library in my application and would like to know the best way to handle the following cases Multiple Device and Single User Use Case: User U1 with Google Play Store Account G1 subscribes to Subscription…
Navjot
  • 1,202
  • 1
  • 11
  • 24
3
votes
3 answers

How to retry a subscription when it fails in Angular 9?

Context: Working with Angular 9. I'm trying to wait the back-end to be available to receive requests. Meanwhile it's not, there is a progress bar loading. Issue: when the back-end is not yet available, the subscription fails immediately and enters…
tec
  • 999
  • 3
  • 18
  • 40
3
votes
1 answer

How to use socket.io with graphql subscription?

I want to make a real-time chat app by using nestjs and graphql technology. Most of tutorial uses PubSub but I don't know how to send a message to a specific client (?). I think it is much easy to use socket.io for sending a message to a specific…
3
votes
0 answers

How to set up DataSources for GraphQL Subscriptions in Apollo without long running cache

I'm using RESTDataSource as the basis for all REST backend operations in Apollo server. This works fine for Queries and Mutations, and in particular the ability to use cached responses within a single request is working as expected. I want to use my…
wabrit
  • 217
  • 2
  • 14
3
votes
1 answer

Multiple Subscribers to same message Rebus Azure Service Bus

I have two exactly same consumers Consumer 1 using (var adapter = new BuiltinHandlerActivator()) { adapter.Handle(async (bus, message) => { Console.WriteLine("Got message > " + message); …
3
votes
0 answers

Late subscription renewal real-time developer notification with Google Play Billing Library 2

When using Google Play Billing Library(GPBL) 2 in the client, the first renewal real-time developer notification(RTDN) arrives 22 hours after the subscription expiration. Such gap might cause denial of our services for the user. With GPBL 1.2.2 in…
Pavol
  • 31
  • 3
3
votes
1 answer

PostgreSQL logical replication not working after added a new table to publication

I am new to PostgreSQL logical replication. I did test, after I added a new table to a publication, I found the replication didn't work, until I re-created subscription, I am sure it's not the best practice to re-create subscription, could you…
aris yang
  • 41
  • 1
  • 2