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
2 answers

Pausing a stream in dart null safety

I'm converting dart code to nnbd. I have the following code. var subscription = response.listen( (newBytes) async { /// if we don't pause we get overlapping calls from listen /// which causes the [writeFrom] to fail…
Brett Sutton
  • 3,900
  • 2
  • 28
  • 53
0
votes
1 answer

How to get payment Details at PayPal Subscription with php?

Im setting up a subscription with PayPal and php. So far I know that if the event PAYMENT.SALE.COMPLETED is called the payment was successful. To process the payment at my webhook I need more details about the payment (Who payed? What plan or…
fixxel
  • 177
  • 8
0
votes
1 answer

subscription in RapidAPI.com

Does buying a plan in RapidAPI allow access and request for all the APIs on this site? For example, if we buy a Mashvisor pro plan, will we have access to Realty Mole Property and send request to get its data?
Sophia
  • 23
  • 5
0
votes
1 answer

Azure API Management - Management API & Developer Portal SAS Token Access to Instance Data?

In Azure API Management instance deployed I have enabled both the Management API and the Developer Portal. I can log into the Developer Portal (as a Developer, account added to Developer Group in Developer Portal blade in Azure Portal, no other…
0
votes
1 answer

Cancel PayPal Subscription at end of billing cycle

How to cancel a PayPal subscription not immediately but at the end of billing cycle? In the PayPal Docs I only found the way of immediate cancellation.
fixxel
  • 177
  • 8
0
votes
1 answer

Filter AppSync Subscription

I'm building a simple multiplayer game using AppSync (to avoid having to manage WebSocket from zero) and Amplify (specifically on Android, using Kotlin). The problem is that when players are connected to a game, should listen for updates for the…
0
votes
1 answer

HttpClient post returns true, but component subscribe function is false

I am trying to log in from a button. I have template input fields with two-way binding to set the string values of username and password. By event binding, the login button triggers a login() method. This login method creates a local Credential…
Jack J
  • 1,514
  • 3
  • 20
  • 28
0
votes
1 answer

How to do actions on a observable list on console input by user?

I created a List which is to be observed for changes which is triggered by console input by user,suppose a user enters a string then that string should be subscribed in the observed list.
Himanshu Ranjan
  • 282
  • 1
  • 7
  • 22
0
votes
1 answer

Angular rxjs interval not subscribing

I have this piece of code: interval(180000).pipe(takeUntil(this._unsub$)).subscribe(() => myFunc()) _unsub$ is a subject that is fired in ngOnDestroy method. My problem is that myFunc never get executed. The same piece of code in another component…
0
votes
1 answer

In App purchase getting Blank Sku details list

I have create an app for In App purchase, i have tested it works fine getting sku details list but when run app in debug mode the getting blank Sku details list do not know why i am unable find that issue, I uploaded the app (in production )on play…
0
votes
1 answer

Subscription fails for credit cards on iOS

In my app I offer an auto-renawable subscription. About half of the users are not able to successfully start the subscription. These are all users that want to pay the subscription with a creditcard that requires an extra authorisation step from the…
bdv
  • 21
  • 5
0
votes
1 answer

Alias Name in New-AzSubscriptionAlias Command

I am using the below command to create a new subscription in Azure, But I am a bit confused about what does AliasName means, Why cant I just put the Subscription name to create new subscription? Also, what are the best practices for the alias name,…
0
votes
2 answers

Passing a parameter to a method inside ngOnInit doesnt even call a Service, log nothing

On a previous component page I made once u click on a button it takes u to some other component using navigation. Considering I had to write two parameters, one for a current path and second for the next, when I try to subscribe to it, it gives me…
0
votes
1 answer

SQL Server Transactional Replication - Error number: 213 - Column name or number of supplied values does not match table definition

I have an issue with Transactional Replication which I am struggling to resolve. This is the error: Column name or number of supplied values does not match table definition. (Source: SQL Server, Error number: 213) The error is occurring on an…
0
votes
1 answer

Rxjs notify when all http requests finish with error handling for each request

Hi I have some class objects to POST and I need to store the result back into them, e.g.: class Bid { price: number; result?: string; } const bids: Bid[] = [{price: 10},{price:20}]; for (const bid of bids) { http.post(bid).subscribe( …
user1589188
  • 5,316
  • 17
  • 67
  • 130
1 2 3
99
100