Questions tagged [subscription]

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

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

2251 questions
8
votes
2 answers

RxJS Migration 5 to 6 - Unsubscribe with TakeUntil

What is the best way to unsubscribe in RxJS 6? My 'old' RxJS 5 code looks this export class MyComponent implements OnInit, OnDestroy { private ngUnsubscribe: Subject = new Subject(); this.myService.myEventEmitter …
Juri
  • 1,531
  • 2
  • 20
  • 43
8
votes
2 answers

Angular 4 emitting and subscribing to an event in a shared service

I am emitting an event in my main component: main.component.ts this.sharedService.cartData.emit(this.data); Here is my sharedService.ts import { Component, Injectable, EventEmitter } from '@angular/core'; export class SharedService { cartData =…
Stef
  • 644
  • 1
  • 8
  • 25
8
votes
1 answer

Stripe paid trial period?

How can I set a subscription plan to a certain price? I want to offer trial periods, but I don't want them to be 100% free. I want to charge say, $1 so they feel they are making a financial commitment. Free sets a bad expectation. From what it looks…
Khirad Zahra
  • 843
  • 2
  • 17
  • 42
8
votes
2 answers

SSRS Subscription fails "Thread Being Aborted"

I have a huge report which works fine when I browse through report viewer. I have created a subscription so I can run this in the background. The subscription works if it's the only subscription running. If I run 2 subscriptions starting at the same…
Usman
  • 101
  • 1
  • 1
  • 4
8
votes
3 answers

iPhone In App purchase subscriptions pay for renew?

I'm developing an app in which the user could subscribe for a feature to use for a specified period. The subscription period gets verified on our own server and after this time the user needs to buy a new subscription. Now I am confused about the…
user459672
8
votes
3 answers

Azure cloud service deployment issue with pay as you go subscription - cloud services are not available in this subscription

I am having an issue while deploying an Azure web role to a cloud service. It shows me the error Cloud services are not available in this subscription. I am using a pay as you go subscription on Azure. I don't know if there is any limitation with…
8
votes
2 answers

how to generate unsubscribe link for newsletter?

I want to write a newsletter with php. but i have a question: how can i generate a code for unsubscribe. In fact i want a unique code for each subscriber. for example in 'http://net.tutsplus.com/' you can see something like…
Fatemeh Gharri
  • 369
  • 2
  • 6
  • 20
8
votes
3 answers

Testing Android IAP/In-App Purchase Subscriptions

I am implementing several Android applications to be launched on Google Play and they all have subscriptions using the Google IAP auto-renewing subscription product type. To test the app I have done the following: Uploaded a draft binary to Google…
Dean Wild
  • 5,886
  • 3
  • 38
  • 45
8
votes
1 answer

How to check if a user has a subscription (Android in-app billing)?

I've been trying to use the Google Play Android Developer API but just realized that that might not be what I should be doing: Your servers should never query subscription status dynamically, based on individual requests from your Android…
Kalina
  • 5,504
  • 16
  • 64
  • 101
8
votes
1 answer

SSRS Report Subscription Parameters (Date Values)

I am looking to setup a report subscription in SSRS 2008 R2 where the client user can set the date parameter to whatever the individual user would like. I have been reading multiple suggestions to use =Today() in the parameters but this syntax does…
Peter Larsen
  • 493
  • 2
  • 9
  • 20
8
votes
2 answers

Android subscription and Google API

I'm trying to use the new Android subscription system from Google Play into my application (I already had in-app billing working fine). I have successfully done the subscription billing, but I now want to retrieve informations about this…
user1427041
  • 81
  • 1
  • 3
7
votes
2 answers

how i come to know if cancel subscription from Paypal site

I have integrated PayPal merchant account to the website , m doing it for a client People can sign up to the website after subscribing and hence paying thru PayPal .we have recurring payments. But if people unsubscribe from the site their access to…
thecodedeveloper.com
  • 3,220
  • 5
  • 36
  • 67
7
votes
3 answers

Facebook API to query my subscriptions/subscribers

Do you know whether there's an API to query my subscribers and/or subscriptions?
vyakhir
  • 1,714
  • 2
  • 17
  • 21
7
votes
1 answer

Swift Combine how Set works?

I have ViewModel with disposable Set defined this way class ViewModel { private var disposables = Set() func sync() { repo.syncObjects() .handleEvents(receiveCancel: { print("Synced objects:…
Michał Ziobro
  • 10,759
  • 11
  • 88
  • 143
7
votes
1 answer

Track Google Play refunds performed by user/google

We want to store when a google play purchase is refunded to a user for data analysis. According to documentation, there are 3 ways for a user to request a refund for a subscription on google…