Questions tagged [subscription]

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

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

2251 questions
3
votes
0 answers

How to test subscription using sandbox mode in Android with short duration?

I am currently working on Android Subscription. While testing subscription in sandbox mode we have the below options in iOS, 1) 1 week - 3 minutes 2) 1 month - 5 minutes etc... Like that is there any other mode available for android sandbox…
Madhavan
  • 647
  • 4
  • 16
3
votes
3 answers

Checking auto-renewable subscriptions for expiration

I have set up a sandbox user and successfully subscribed them to a one-month auto-renewable subscription on my iPhone device. How can I detect whether or not the user's subscription has ended? I have the following code: [[SKPaymentQueue…
Alexandru
  • 12,264
  • 17
  • 113
  • 208
3
votes
1 answer

Need to set a date parameter on an SSRS subscription

I have a report in SSRS that takes a single date as a parameter. What I want is for that report to have a subscription that uses the Saturday of two weeks ahead as the date (i.e., Monday 7/4 would give Saturday 7/16). How can I do this in the…
Dom Vito
  • 507
  • 8
  • 38
3
votes
0 answers

Android subscription purchase returns same order IDs

According to Google's documentation order IDs of subscriptions have the following format: 12999556515565155651.5565135565155651 (base order number) 12999556515565155651.5565135565155651..0 (initial purchase orderID) …
3
votes
2 answers

How to consume the subscription type in app product purchase

I have implemented the subscription type in-app products in my app like 1 month or 2 months package, once a user subscribe to the product I let the server know and deal with him/her accordingly and it is working very fine. According to Google at…
Mohsin
  • 1,586
  • 1
  • 22
  • 44
3
votes
0 answers

How long Apple will keep trying charge for failed auto renewable subscription?

We are doing auto renewal from server side by verifying receipt with Apple's API. According to Apple's doc: During the 24-hour period before the subscription expires, the App Store starts trying to automatically renew it. The App Store makes…
Allen Hsu
  • 3,515
  • 3
  • 25
  • 38
3
votes
3 answers

RxJava: How to Subscribe only if the Observable is Cold?

TL;DR: How do you create an Observable that only creates a Subscription if it is cold and queues any other subscribe calls when it is hot? I would like to create an Observable which can only execute a single Subscription at a time. If any other…
bkach
  • 1,431
  • 1
  • 15
  • 24
3
votes
1 answer

Sending HTML e-mail

i'm using Drupal 6. How can I create HTML e-mails for subscriptions (i.e via a template)? mail_edit() offers plaintext messages: can I use it for sending HTML mail?
ArK
  • 20,698
  • 67
  • 109
  • 136
3
votes
3 answers

Stripe : Specify Specific Card for Subscription

I have set up subscription based website that allows people to have multiple subscriptions. I decided to go with Stripe for payment and card processing. It took very little time to get it integrated into my Symfony2 project. I was able to create…
XCoder
  • 51
  • 1
  • 6
3
votes
1 answer

FIWARE-Orion Context Broker metadata updates trigger notifications

I'm using 3 FIWARE GEs: IDAS+Orion+CEP. As reported in the Orion documentation (https://github.com/telefonicaid/fiware-orion/blob/develop/doc/manuals/user/metadata.md) "changing the metadata of a given attribute or adding a new metadata element is…
3
votes
1 answer

Paypal subscription flow

I need some clarification about the best way to combine paypal subscription in my website registration flow. The steps for registration: user chose a price plan by clicking on paypal subscribe button the use complete payment on paypal form the…
3
votes
0 answers

Google Play returns wrong developer payload after purchasing subscription

I am testing purchasing subscriptions and I experienced some very strange behavior. When I first make my purchase, everything is just fine. I set a developer payload, and I get it back in the response. The problem is when I cancel my subscription.…
keybee
  • 1,498
  • 20
  • 32
3
votes
2 answers

How can I make Meteor subscriptions dynamic?

I am looking to make my meteor subscriptions dynamic/reactive. Right now, I have a page that subscribes to a collection of templates based on a template ID that is assed to it: Meteor.subscribe('templates', templateId) On the same page, I have a…
Trung Tran
  • 13,141
  • 42
  • 113
  • 200
3
votes
1 answer

How do I use a subscription in flow-router?

// server/publications.js Meteor.publish('crewMessages', function(crewId) { return CrewMessages.find({crewId: crewId}, {sort: {submitted: -1}, limit: 100}); }); // lib/router.js FlowRouter.route('/crew/:crewSlug', { subscriptions:…
sergserg
  • 21,716
  • 41
  • 129
  • 182
3
votes
1 answer

How does an Apple IAP receipt look like for auto-renewing subscriptions with different durations in a subscription family?

I'm developing an app that offers auto-renewing subscriptions. I do not know how the JSON response from Apple will look like when validating the receipt hash if a user has purchased subscription.A (which renews after 7 days), and then goes to his…