Questions tagged [subscription]

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

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

2251 questions
5
votes
1 answer

Get subscriber id from in-app purchase

I have created a small app that has in-app subscription products. I want to fetch the subscriber ID via API after the transaction has occurred. I searched extensively and found that this ID is available only in a report "Subscriber Report" …
bluesidr
  • 51
  • 5
5
votes
2 answers

Adding monthly subscription payment to chrome extension

I'm approaching completion of my chrome extension and need to explore monthly subscription options. What is the best approach to doing this?
5
votes
3 answers

How to get Purchases.subscriptions: Details in Android

I implemented in-app billing in my mobile app. It uses auto renewing subscription. I want to check the subscription expiry date through the app. I found this link to check the subscription details : Purchases.subscriptions:get The documentation…
Jijith J
  • 173
  • 2
  • 12
5
votes
0 answers

startTimeMillis no longer updates in Google InApp subscription renewal

This questions is in regards to the startTimeMillis field in the Purchases.subscriptions object from Google. If a User purchases something via Android, the App will send purchase data to our Backend for validation and processing. The response form…
winna
  • 539
  • 1
  • 3
  • 16
5
votes
1 answer

Instagram Subscription

I have followed Instagram documentation (https://www.instagram.com/developer/subscriptions/) on how to create a user subscription. This is the response that I get after creating the subscription: { "meta": { "code": 200 }, …
johan
  • 51
  • 2
5
votes
1 answer

Membership subscription using stripe with dynamic plans

We use stripe for our payment gateway. We have X products in different currencies that we want to keep for subscription. The user can choose any combination of these X products and pay the membership price (monthly) and use the combinations they…
girish
  • 305
  • 3
  • 16
5
votes
1 answer

Zapier: modification of webhook listener HTTP response?

Certain API's require additional information in the webhook listener response. For example, I'm trying to subscribe to Outlook.com's push notification service, which describes the flow below: "The Outlook notifications service tries to validate the…
gnyc100
  • 51
  • 2
5
votes
3 answers

Verification by Card always shows Session Expired on Azure

Whenever i try to register for Azure Free Trial, i feed all information and as soon as i land on Verification by Card page, it loads and then instantly shows me Session expired. I tried using different ID, different network and also different city…
Monik
  • 53
  • 2
5
votes
1 answer

Handling Multiple Subscription in GooglePlay

In ios and amazon - we have a subscription family - example if i have purchased a one month subscription, I cannot purchase a six month subscription of the same family. But it appears that this is not the case in google play. For example a user…
5
votes
2 answers

Meteor: Single-Document Subscription

Whenever I encounter code snippets on the web, I see something like Meteor.subscribe('posts', 'bob-smith'); The client can then display all posts of "bob-smith". The subscription returns several documents. What I need, in contrast, is a…
ideaboxer
  • 3,863
  • 8
  • 43
  • 62
5
votes
2 answers

How Can I Properly Use WooCommerce Subscriptions API in PHP?

Documentation is very scarce. I'm trying to create some code that uses WooCommerce subscriptions (a plugin for WooCommerce) API to get a list of subscriptions and all of the details of each subscription. The docs and examples out there are just so…
xendi
  • 2,332
  • 5
  • 40
  • 64
5
votes
1 answer

Magento Newletter subscription - show error if already subscribed

Hi I am using default newsletters subscription package in magento. I need to show an error if the user is already registered with Us I've seen an option like this $emailExist = Mage::getModel('newsletter/subscriber')->load($email,…
manipvd
  • 643
  • 1
  • 6
  • 7
5
votes
2 answers

YouTube API v3 detect if subscribed to a channel

I want to be able to detect if the currently authenticated user is subscribed to a specific YouTube channel in the YouTube API v3. A possible solution would be to retrieve a list of all the subscriptions of the currently authenticated user and check…
JonasG
  • 9,274
  • 12
  • 59
  • 88
5
votes
1 answer

IAP Auto Renewable Subscription manual renewal before expiry date

I am working on a app on IAP Auto Renewable Subscription which auto renews subscription after its expiry date. I gave a renew button to renew a subscription if it is already expired. (Auto Renewable Subscription might expire if user has canceled it…
Vaibhav Saran
  • 12,848
  • 3
  • 65
  • 75
5
votes
1 answer

Add Discount to Braintree Rails Subscription

I'm trying to add a discount object to a subscription with the braintree-rails gem, but it is not applied. I'm guessing my code must be wrong, but I can't find a working example. discount =…