Questions tagged [subscription]

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

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

2251 questions
2
votes
1 answer

Find out origin of Google Pub/Sub subscriptions

We are using Google Pub/Sub in the Google Cloud Platform. There are many anonymous subscriptions listening to our topics. We don't know how and why they have been created. Is there a way to find out who (e.g. which program, which host, etc.) has…
2
votes
1 answer

Subscribe to all observables in a combineLatest

In my code I open a matDialog allowing XLSX extraction. When opening this matDialog, data is loaded into the ngOnInit(), which may take some time. That's why I use combineLatest() with filter() allowing me to wait for the result of the three queries…
Quentin
  • 1,865
  • 2
  • 24
  • 40
2
votes
1 answer

Does Oracle Cloud provide extended support for Databases like Oracle 11gR2 which has reached end of support

I wanted to know if Oracle 11gR2 database is migrated to Oracle cloud without upgrading the version, then does oracle cloud provide us with extended support, as oracle 11gR2 is reaching end of support on Dec 2020. I found 4 methods for migrating…
2
votes
1 answer

Can we open google play store subscription screen from other app?

I want to open google subscription screen from my android app. Is there any way to open this? I know that app listing (play store) can be open from our app, but don't know about a subscription screen. Thanks.
2
votes
0 answers

Subsequent logins failing in Azure Function

I have an interesting conundrum that I could really use some guru advice on. I have a multi-threaded C# Azure Function that uses an application principal to log into the service manager endpoint and gather monitoring information across multiple…
2
votes
1 answer

Apollo client subscription works in playground but not in expo app

Subscriptions works in the playground and return expected fields but not in apollo graphql client, it doesn't return anything ! Here's the query being used in both the playground and client : export const PARTY_SUBSCRIPTION = gql` subscription…
2
votes
3 answers

Return promise value from observable subsciption

Is there any chance to return from helpMe function value from getDataFromApi() ? So far every time i call this function i get "null" value. async function helpMe() { let promise = null; let sub =…
2
votes
1 answer

What action should be taken when a user enters billing retry in iOS subscriptions?

How should a user which enters is_in_billing_retry_period be treated? Will Apple force the user to pay, and therefore I shouldn't suspend the service? Or should I suspend the service until the user has payed? There's conflicting information…
2
votes
0 answers

iOS subscriptions: Why get subscriptions in sandbox stuck in is_in_billing_retry_period?

I am working on implementing iOS subscriptions. If a new subscription is purchased for a new test user in most cases the subscription will be renewed 5 times and is than canceled. However, in some cases the subscription moves to…
Andrei Herford
  • 17,570
  • 19
  • 91
  • 225
2
votes
2 answers

Adding text before and after prices in WooCommerce excluding subscriptions products

In WooCommerce I use the following code to add some text around the displayed product price ("Rent:" and "/day") like: function cp_change_product_price_display( $price ) { echo 'Rent: ' . $price . '/day'; } add_filter(…
Dmitry
  • 119
  • 1
  • 9
  • 38
2
votes
1 answer

Paypal subscription integration full cycle missing in documentation?

I already have an implemented CMS system where the user creates the subscription plans. I want to integrate my CMS server with Paypal so when the user creates a plan it will be created on Paypal servers. I can see how to do that in…
2
votes
1 answer

What is the third number in subscription of Topic in Service Bus Explorer

I am using Azure Service Bus Explorer, What is the third number of Subscription in Service Bus Explorer, For Example, topicname - Subscriptions - SubscriptinName(12,13,0), the first one(12) is the number of the messages the second number(13) is…
Samuel
  • 51
  • 6
2
votes
0 answers

Can't retrieve more than 1000 subscribers with mySubscribers parameter

I am trying to retrieve a complete list of the channels subscribed to the authorized user. According to Subscriptions: list: To retrieve a complete list of subscribers, use the mySubscribers parameter. That parameter, which does not return…
2
votes
1 answer

open62541: publish temperature val

I am currently trying to publish a datetime value AND a temperature value with the OPC UA implementation called open62541. For this, I have been using the test example from the open62541 github repository as it is already publishing the current…
user7335295
  • 401
  • 2
  • 7
  • 31
2
votes
1 answer

Get subscription price from a SKPaymentTransaction

My app offers in-app subscriptions. When a subscription is bought or renewed, the app is notified with a SKPaymentTransaction, that contains in-app product identifier. I can query that in-app id to retrieve the purchased SKProduct. That product may…
Vladimir Grigorov
  • 10,903
  • 8
  • 60
  • 70