Questions tagged [subscription]

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

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

2251 questions
1
vote
0 answers

Mongodb Apollo Prisma Subscriptions

I have been trying to build something that needs real-time data. I have created the subscription structure, but all the tut videos from like 2018. documentation is extremely limited. I was wondering did something came up and everybody moved away…
Bora ALAP
  • 269
  • 3
  • 13
1
vote
1 answer

php laravel and stripe auto trigger for payment in specific time

i am working on project ( php laravel + stripe payment ) which i need to let the user pay for product by two step : the first one will be triggered by the user to pay half amount of product's value and the second one will be paying the remaining…
Abd Al Rahman
  • 121
  • 2
  • 9
1
vote
1 answer

Apollo and Hasura - Subscriptions missing auth header

I've got a React app I'm trying work on struggling a little with implementing subscriptions with Hasura. My queries are working as they should but I'm getting the following error when trying to execute a subscription: "cannot start as…
Blake Hayes
  • 53
  • 1
  • 5
1
vote
1 answer

How to access the data when using OPC UA subscriptions with the Python OPC UA implementation

I am currently developing a system with multiple communicating entites. It models the communication in a production plant. I am using the freeopcua Python implementation for the communication. To break it down: There is a script that is running a…
LocalHorst
  • 11
  • 2
1
vote
0 answers

Website doesn't reflect Stripe customer/subscription changes

I have a website built with the Laravel framework that uses Stripe to process subscription payments. When a user subscribes to a plan through my website, this row appears in the "subscriptions" database table: When a subscription is canceled…
1
vote
1 answer

How to get all resources with details from Azure subscription via Python

I am trying to get all resources and providers from Azure subscription by using Python SDK. Here is my code: get all resources by "resource group" extract id of each resource within "resource group" then calling details about particular resource by…
user2156115
  • 1,169
  • 4
  • 17
  • 30
1
vote
2 answers

Store subscription from custom Combine subscriber?

According to the swift combine documentation, the proper way to connect a subscriber to a publisher is with the publishers subscribe(S) protocol extension method. Then the publisher creates a subscription and passes that subscription on to the…
Plastech
  • 757
  • 6
  • 17
1
vote
1 answer

STRIPE - Creating Subscription with trial, implementing one-time authentication fails for 3D secure cards after trial ends

Stack: Nodejs/Vue/Stripe NOTE: Logic works for the standard card (4242424242424242), when trial does not exist even 3D cards work. This card is used for this test: 4000002500003155 https://stripe.com/docs/testing#regulatory-cards Hi everyone, so…
1
vote
0 answers

how to assign a value to a object's property from GET request in angular?

In a service I have a GET request to an API. My goal is to subscribe to the observable and assign a value to each element's property of the array in the response. This is my service: export class Service { private readonly _sentinels = new…
Abri
  • 43
  • 7
1
vote
2 answers

How can I manage Cross-platform Apple In-App Purchase?

my name is Antony Basta and I am the developer of an app called SecuriKey. SecuriKey allows any old apartment building intercom to be controlled from an app. Users can create entry codes that work once, up to a certain date, or are instantly…
1
vote
1 answer

Stripe update subscription and add new payment method with 3d secure

I created a subscription as described on https://stripe.com/docs/billing/subscriptions/elements but now I want to give the user the choice to change the plan on the subscription and use another payment method, ex 3d Secure card. However if I update…
Gadelkareem
  • 1,067
  • 13
  • 30
1
vote
1 answer

To find n-th element in a generator for several times

I create a simple generator using x = (i for i in range(100)) If I want to find the 50th element I would use next(itertools.islice(x, 50, None)) to get it, but then I want to find the 25th in [1..100], if I continue to use next(itertools.islice(x,…
sho ryu
  • 19
  • 2
1
vote
0 answers

Google Play Billing Library - Free trial not enabled for Subscriptions in India Region

I am using the Google Play Billing library system to make subscriptions inside my app. I am trying to do in-app billing/purchase and test my application on an Android Emulator device. I would like to perform some functional testing of my application…
Kamal
  • 453
  • 1
  • 10
  • 22
1
vote
1 answer

How to schedule biweekly SSRS subscription on 2017 report server

I would like my report to be sent biweekly on a Monday. Right now, I created two different subscriptions that sends the report on every 2nd and 4th week. I am not sure it would be accurate considering, I would like the send the report Monday after…
1
vote
0 answers

Swap Subscription Laravel Cashier at next Billing Cycle

I want to offer my customers the ability to upgrade and downgrade their subscription. When they upgrade, the plan is prorated. When they downgrade, it isn't. This is what i got so far: if(auth()->user()->plan()['price'] <= $newPlanPrice){ …
Remi
  • 39
  • 6