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

Can't subscribe rhel 8.5 VM to subscription manager

All. I recently built a RHEL 8.5 (Ootpa) VM with all the bells and whistles in my home lab. II want to run yum update -y to see if there's a link between 8.6 and 8.5 not subscribing. Below is a copy of the output on my server: [~]$ sudo…
1
vote
0 answers

Setting up graphql yoga with websockets in nextjs api

In graphql yoga documentation, I found this example for using graphql yoga with websockets but it's in nodejs environment. How can I setup a server in nextjs api using this example? All advice is appreciated, thanks. import { createServer } from…
1
vote
1 answer

Android - Test Pending Purchases with Subscriptions

I am trying to test pending purchases on Android for my app which is going to have subscriptions. At the moment I see: Test card always approves. Test card always declines. I need to see: Test card slow to approve. Test card slow to decline. How…
Sach K
  • 591
  • 4
  • 20
1
vote
0 answers

Can't rebuy an autorenewable subscription after user cancels it

A user bought an autorenewable and cancelled it before the next renewal/expiration date. Apple Server Side Notification catches this and sends the correct "EXPIRED" tag. Problem is user now wants to resubscribe with the same subscription…
KemBel
  • 11
  • 1
1
vote
1 answer

Create subscription with URL including Bearer Token in the header

Hello FIWARE specialists, I like to create a subscription, which pushes notifications to an external service. The external service needs authorization with a barrier token. If I use curl, I add "--header 'Authorization: Bearer XXX'". How can I add a…
knigge
  • 31
  • 3
1
vote
1 answer

How to filter out events coming to UaMonitoredItem in OPC UA Milo?

I am trying to write an internal application event log based on UaMonitoredItem and its setValueConsumer(ValueConsumer valueConsumer) method. Is it possible to filter out events coming to UaMonitoredItems after the "initialization"/"first use" of…
1
vote
1 answer

How to catch the change of monitoredItems in Milo OPC UA?

I am writing a client using the Milo library in the Java programming language. I have seen examples where the setValueConsumer(Value Consumer value Consumer) or setEventConsumer(EventConsumer eventConsumer) method of the UaMonitoredItem object is…
1
vote
0 answers

how to find out how much money the user gave for a subscription or in-app purchase in iOS receipt?

I could not find in the Apple documentation how can I find out how much the user paid for a subscription or purchase? In different countries, the subscription price is different and depends on several factors including VAT.
Nikta
  • 11
  • 1
1
vote
0 answers

Downloading telegram videos from a premium channel

I never have used Telegram before, I just downloaded both in my phone and in my pc the Telegram app in order to subscribe to a private channel where I paid a subscription. I think that the model has made unavailable the possibility to download her…
Mike
  • 11
  • 1
  • 3
1
vote
0 answers

Why is the subscription not updating correctly, Android?

I have two subscriptions in the application, each of them individually works correctly. But when I try to do an Update/Downgrade, problems arise: I have two subscriptions in the application, each of them individually works correctly. But when I try…
1
vote
2 answers

Nest.JS graphql subscription does not work with DataLoader (context is not defined)

I have a nestjs graphql application which uses DataLoader. It works fine for queries and mutations, but it does not work for subscriptions. This is how configuration is defined in app.module: @Module({ imports: [ ... …
Kasheftin
  • 7,509
  • 11
  • 41
  • 68
1
vote
1 answer

So have subscription receiving callback fine, now what next?

So I have set up the subscription, and I am receiving the callback with some data. Now what do I do next, all I am seeing is a the persons UID the time it was made and an ID which is the same as the UID. I have been trying to find examples, and what…
1
vote
2 answers

Azure API Management - subscription key not being enforced

I have an Azure Function that I'm managing via Azure APIM. I have created a subsciption key for it, however it's not being enforced. I've tested accessing it without the subscription key and it can still get a response. Any idea on how I can…
1
vote
1 answer

Questions about managing subcription payment status in my database

Developing an app that people pay a monthly subscription to use. They can pay monthly or a year in advance for a reduced price. What is the best way to make sure they are up to date? My best guess is, when they make a payment, an expiration date is…
Andrew Samuelsen
  • 5,325
  • 9
  • 47
  • 69
1
vote
1 answer

How to prevent abuse of unsubcription from a newsletter?

Preface: I'm not a web developer, I'm just trying to learn as I go while making my first website. I stumbled on an engineering problem in regards to unsubscribing from newsletter. I thought it would be a good idea to use a get method with a…