Questions tagged [subscription]

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

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

2251 questions
0
votes
1 answer

Periodically renew Subscription with Angular for http-get

I would like to call periodically a method on my Angular Frontend from the Server. I just would like to receive the current time. My problem is that the memory usage from the browser is growing and growing! I'm not sure whether the subscription is…
MeerArtefakt
  • 386
  • 2
  • 6
  • 26
0
votes
1 answer

Can't test subscription upgrade/downgrade using iOS Sandbox auto renewable subscription

As per apple document now user can test plan upgrade/downgrade in sandbox mode for auto-renewable subscription. Now All Plans of same subscription group is appearing in manage subscription page in sandbox Mode. But when you try to upgrade/downgrade…
iosdev1111
  • 1,048
  • 1
  • 13
  • 32
0
votes
1 answer

What is the reason of making a : subscription on Python variables?

I found this code at Stack Overflow: input_filename = "to_modify.xlsx" wb = load_workbook(input_filename) # Get first sheet sh: worksheet = wb[wb.sheetnames[0]] The link is here: How to change font size in Python OpenPyXL So, I tried in a…
0
votes
0 answers

Billing Client subscription with different currencies

I implemented google payments for subscription with introductory period but there is an UI issue that I don't have any clue how to resolve. So, the SkuDetails json looks like: {"type": "subs", "price": "$ 28.88", "price_amount_micros": 28884077,…
Chirila Vasile
  • 359
  • 1
  • 2
  • 11
0
votes
0 answers

How to create a subscription in MS Graph Api via Google Apps Script

Goal: Get a notification when new folders are added to root What I did: I read MS official document and tried to set a subscription function setSubscription() let url = "https://graph.microsoft.com/v1.0/subscriptions"; let payload = { "changeType":…
0
votes
1 answer

Need Support to finalize the Migration method to migrate a Azure SQL MI Databases from Azure Cloud-Company Account to Azure Cloud-Clients Accounts

We are trying to Migrate Azure SQL Managed Instance Databases from Azure Cloud - Company Account to Another Cloud in Clients Accounts. Need help to choose the right migration methods to migration the Azure SQL MI Databases across subscription and…
0
votes
0 answers

GraphQL Subscription returns a null object doesn't create a subscription

I'm trying to get a simple GraphQL subscription model working using express-graphql. Using Graphiql when I use: subscription { newBook { title author } } I get: { "data": { "newBook": null } } and it doesn't create a…
Mitchell Hudson
  • 1,013
  • 2
  • 10
  • 19
0
votes
1 answer

How to handle auto renewable subscription resubscribe?

I am implementing auto renewable subscription in my iOS application. Monthly subscription auto renews after 5 mins in sandbox mode. I have added transaction observer in appDelegate. So when app restarts updated transaction method gets called and i m…
iosdev1111
  • 1,048
  • 1
  • 13
  • 32
0
votes
1 answer

MS Graph API: What is subscription ID max length?

What is MS Graph "subscription id" property max length? In examples length of id is 36 characters (e.g. "7f105c7d-2dc5-4530-97cd-4e7ae6534c07"). It will be always like this? I can't find info in documentation.
0
votes
1 answer

Microsoft Graph Api - Post Subscription gives Internal Server Error

I'm trying to post subscription request to graph api via https://graph.microsoft.com/v1.0/subscriptions endpoint. However, I keep getting this error: "code": "ExtensionError", "message": "Operation: Create; Exception: [Status Code:…
0
votes
1 answer

Angular 11 wait until subscribe finishes getting data

I have a auth.service and data.service. auth.service getting data from data.service but it checks before data arrives. So it returns undefined. auth.service getting data like this; get isLoggedIn(): boolean { const user =…
HighHill
  • 47
  • 1
  • 11
0
votes
0 answers

How to subscribe to NavigationEnd events when 3 of 4 subscribe methods are deprecated

I am using angular 11, rxjs v6.6, and typescript 4.0.5. There are 4 subscribe methods of Subscription of which 3 are deprecated. I have searched the ends of the google earth to find syntax that will work for the one subscribe methods that is not…
Steve Miller
  • 300
  • 3
  • 11
0
votes
1 answer

How to wait for subscribe inside subscribe?

I need to get an order with array of products. But getProduct() works later than i need, and all products undefined. I found out that nested subscribe its bad way, so what is the correct way to use mergeMap/switchMap getOrder(id: string) { …
0
votes
1 answer

Logic App - Workflows per region per subscription 1000 - is limit to number of Logic app with per region or Instance per logic App

There is limit of 1000 LogicApps workflows per region per subscription. Is the limit on the number of workflows we can create or the limit is on the number of running instances of the workflow?
Robin
  • 3
  • 2
0
votes
2 answers

React Actions using RxJS for parallel async calls

I am having an existing action that calls the api with list of IDs as querystring parameter and fetches the thumbnail response for the passed IDs. In some cases, count of IDs can be 150-200 records. Hence, I am working on making this APIs call batch…
Milind Anantwar
  • 81,290
  • 25
  • 94
  • 125