Questions tagged [subscription]

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

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

2251 questions
6
votes
1 answer

iOS SKProduct How to retrieve free trial information of IAP ?

I'm developing an iOS app that will include auto renewable subscriptions. I want to dynamically populate an upgrade screen based on the available list of subscriptions. While I can easily pull the price information, title and description I can't…
vondip
  • 13,809
  • 27
  • 100
  • 156
6
votes
3 answers

Woocommerce subscription custom fee add to recurring total

I would like to ask how to add a custom fee to the woocommerce subscription recurring total? Found this on the web: function woo_add_cart_fee() { global $woocommerce; $woocommerce->cart->add_fee( __('Custom', 'woocommerce'), 5 ); } add_action(…
6
votes
10 answers

Email address validation methods (Subscribe button)

I am coding a site in php and I am currently on the contact us page and I was wondering what was the best way to validate an email address? By sending a validation link to their email? Regex Any other method? Also could you tell me why and a guide…
RSM
  • 14,540
  • 34
  • 97
  • 144
6
votes
5 answers

Android in app subscription testing

I want to test the in app subscription mechanism on android devices(In app billing V3. api). How can I do this? I saw that testing with static responses is works only with the in app products. The beta/alpha testing supports the in app…
user3119267
  • 63
  • 1
  • 3
6
votes
3 answers

iOS in-app purchase auto-renewable subscriptions free trial option not available?

From apple's documentation it is possible to offer free trials to users, after which they will be auto-billed at the end of the trial If you offer a free trial, it will begin when a user subscribes. They will be automatically charged when the…
Hulk_SMASH
  • 553
  • 1
  • 7
  • 13
6
votes
1 answer

App Store subscription with free trial allowed?

My app let the user input very specific types of data, and offer online synchronization. To use the app, you must pay a subscription (auto renewing subscription in-app purchase). However, I would like to include a free trial. I cannot use the free…
userD
  • 713
  • 1
  • 6
  • 12
6
votes
0 answers

500 Internal Server Error for GET on www.googleapis.com/androidpublisher/v1/

finally I could resolve my recent problems dealing with the OAuth2 authentication for accessing the google API. But now I'm stuck while querying the android developer API to retrieve status information about subscriptions. I'm using following REST…
Christopher Will
  • 2,991
  • 3
  • 29
  • 46
5
votes
2 answers

Subscription management logic

For a system where a user can be a member or admin, users with the member role must either pay for it with a recurring subscription, or be given a complimentary access. My current approach: Users have a user database table. A subscription table…
5
votes
2 answers

Switching from a paid app to a free app with auto-renewing subscription

I have an app which costs $5. I'd like to change this so that the app is free and that users must purchase an auto-renewing subscription to use it. I know how to implement the auto-renewing subscription, but the problem is dealing with users who…
jjoelson
  • 5,771
  • 5
  • 31
  • 51
5
votes
1 answer

How to get freeTrialPeriod of subscribtion from ProductDetails?

In Google Play Billing Library 5 there are ProductDetais instead of deprecated SkuDetails. SkuDetails had freeTrialPeriod field which returned free trial of subscribtion. In ProductDetails I can't find any similar field, is there a way to get…
Vahan
  • 3,016
  • 3
  • 27
  • 43
5
votes
1 answer

How to detect close button action for default manage subscription in iOS 15?

I have used showManageSubscriptions function show subscription sheet with subscription options within the application but there is a close button in the sheet which action is not detected, button is clickable though. @available(iOS 15.0.0, *) …
Saumil Shah
  • 2,299
  • 1
  • 22
  • 27
5
votes
1 answer

Best way to offering multiple subscriptions for one user (iOS, Android)

Does anyone have experience implementing multiple subscriptions model for an app? I wasn't able to find proper documentation about this topic. The most common way to create in-app subscription model is one-subscription per one-user. But I want to…
5
votes
0 answers

Apple Subscription Offer Codes do not work when crossgrading

I'm trying to use the Offer Codes feature Apple introduced in iOS 14. While it mostly works we are receiving reports of issues from our users that they can't actually redeem the offer. From the documentation: Select the customer eligibility for…
Aleš Oskar Kocur
  • 1,381
  • 1
  • 13
  • 29
5
votes
2 answers

The subscription of 'concierge subscription' has more than one match in cloud 'AzureCloud'

Using one session of an azure sandbox which lasts for 4 hours. Once one session gets expired, I've created a new sandbox to continue practicing exercises from the Azure portal. After execuing command: az account set --subscription "Concierge…
CIndolia
  • 51
  • 2
5
votes
2 answers

Get the list of all subscribers to a public graphql subscription

I'm implementing a graphql server, it must have a public subscription for public updates. My question is, how would one get the subscriber count? Is there something I'm missing about graphql subscriptions? Are graphql endpoints even supposed to be…
SnakeFoot
  • 174
  • 3
  • 16