[tags:in-app purchase,subscriptions]

1,349 results found

Post not yet marked as solved
3 Replies
Also relevant is the ideal state management with respect to promo offers. Current entitlement engine provides offers as part of receipt verification - in the process it might be bit time consuming call storing subscription + offer data on back end while verifyreceipt endpoint has just returned from apple. Also a concern would be, how to reset promo offer pending status on the server? promotional_offer_id I know the above tells about it within the receipt. This means that all such operations have to be tied up with verifyReceipt?
Post not yet marked as solved
3 Replies
I got the same isse last week. Fixed by removing the cache on safari and force the reload of the page. I hope it helped
Post marked as solved
4 Replies
1.6k Views
I am using in-app purchase (non-renewable subscription) in our hybrid application which is developed using ionic framework using the in-app-purchase-2 plugin provided by them ionic in-app purchase - https://github.com/j3k0/cordova-plugin-purchase/blob/master/doc/api.md#initiate-a-purchase. How do we know if the payment got declined by the apple server ? Is there any response from apple server?
Posted
by
Post not yet marked as solved
1 Replies
236 Views
Hello there, i develop the backend for an APP in iOS. Today we received a bug from the support team. An user has purchased an auto renewable subscription today, but it hasn't been enabled in the backend. The core problem is that when validating the iTunes receipt it shows that the subscription is expired. We identified that the same user bought the same subscription type about 6 months ago, but cancelled it. Now he bought it once again, but the token info that we're receiving from the APP doesn't show this new purchase. What may be wrong on this scenario? Is there a new token and the APP is somehow sending the wrong token? Is the token alright, but the APP has missed some needed operation in the iTunes store? Thanks.
Posted
by
Post not yet marked as solved
0 Replies
589 Views
Do we get any mail from apple if an in-app purchase(non-renewing subscription) got declined due to some issues in bank server/ in-sufficient balance / faulty card ?
Posted
by
Post not yet marked as solved
0 Replies
272 Views
I submitted the 2 auto renewable In-app purchases with my new version of the app. After some days my app was approved and get the Pending Developer Release and then I released this version with In-app purchases, I received the email from iTunesconnect for my app Ready for Sale status and also In-app purchases are approved but when I checked on the iTunesconnect console the In-app purchases are Waiting for Review. Now my app's new version is live and In-app purchases not working which is causing serious impact to my app. Kindly Help me!
Posted
by
Post not yet marked as solved
2 Replies
808 Views
Hi, I am currently building a multi-platform app which supports a tiered subscription to additional features for customers which hold a specific amount of tokens in their Ethereum wallet. The core product is free and any additional features are optional. My question would be how to set this up such that it follows App Store purchase guidelines? I see in the dev guidelines (https://developer.apple.com/app-store/review/guidelines/#multiplatform-services) that if we wanted to support any features that are unlocked, we must also set up a route for in-app purchase with Apple. The subscription tokens are not tied to a specific USD amount, so the total price of each subscription tier is variable. Does anyone have any guidance on if this business model could work? What about setting up an in-app purchase with a price that is tied to a non-USD asset? Thanks in advance!
Posted
by
Post not yet marked as solved
0 Replies
301 Views
Hi, We are currently using the auto-renew subscription in our app. I would like to implement subscriptions offers for my auto-renew subscriptions, with promotional code for new customers. Unfortunately these offers are only available for lapsed subscribers or retaining current subscribers. But for my marketing needs, I would like these offers to be available to new users. Is it possible ? How ? Google play provide this feature for new customers. I also looked at the introductory offers, the problem with this one is that there is no way to lock introductory price only for a some specific users. If so, how could we target some specific users based on specific criteria. How can we make a discounted subscriptions only for some specific users ? Regards,
Posted
by
Post not yet marked as solved
18 Replies
I also have the same problem when attempting to reply to an app review: There was a problem retrieving the data for this page. Please try again. Can anyone help please?
Post not yet marked as solved
0 Replies
393 Views
Hello, I have a specific use case in mind, that I want to implement in my app. I would highly appreciate it if you share with me your thoughts on it. Let's say we have a production app with N features. Think about those features as different tasks they can help you perform. The app has 3 different recurring subscriptions with different length periods. Let's say that a user can use all those N features only if he has an active subscription of any kind. If there's no subscription, only a subset of those N features can be used. Freemium business model. We also have a group of X people who have installed the Testflight beta build of the app. Users join the app via a public link, so it's open beta testing. Users reside in beta as long as they want. In beta, the app offers N production features + M features which are being beta tested and are due to be released in production. My idea is to ask the beta users to have an active subscription in order to use the N production features in beta + the other M features who
Posted
by
Post not yet marked as solved
0 Replies
314 Views
We performed an IAP for a monthly subscription on Oct 22. After two days, the sales/proceeds have not registered on Appstore Connect. We confirmed the credit card charge on the user's account and the subscription with the user's appstore profile. Any advice would be welcomed.
Posted
by
Post marked as solved
3 Replies
678 Views
Apple's latest WWDC entitlement engine presentation - https://developer.apple.com/documentation/storekit/in-app_purchase/subscriptions_and_offers/determining_service_entitlement_on_the_server is quite useful as far as converting receipt into subscription + entitlement data. I am using it in conjunction with my own server verifyReceipt endpoint and store subscription data on server, along with original transaction id + user id. First, terminology for below situations: appuser = user login for my own app appstore user = user login for iTunes / appstore However, I am confused on a few things: What should be the source of truth? For entitlement engine to work, receipt must be sent to server. If appuser signs in on Device A, purchases product P, then signs in on Device B, no / empty receipt will exist on Device B. Obviously, this appuser will download subscription data I stored on server during previous verifyReceipt call. Is this OK? How do I know if my server knows the truth about this appuser? Should this be re
Posted
by