in-app-purchase

how to restore subscription for old users in SwiftyStorekit?

两盒软妹~` 提交于 2020-04-08 18:26:12
问题 In the first version, I was using 3 product id's Monthly Three Months And yearly Subscription And in my new version of app there are 2 product id's, which are totally new Month Year So my question is, for old users who have already purchased a subscription with old product id's, how he will be able to restore with the new version. Currently, I m using below code to restore the purchase, but it doesn't restore old product id's. SwiftyStoreKit.restorePurchases(atomically: true) { results in APP

how to restore subscription for old users in SwiftyStorekit?

吃可爱长大的小学妹 提交于 2020-04-08 18:25:50
问题 In the first version, I was using 3 product id's Monthly Three Months And yearly Subscription And in my new version of app there are 2 product id's, which are totally new Month Year So my question is, for old users who have already purchased a subscription with old product id's, how he will be able to restore with the new version. Currently, I m using below code to restore the purchase, but it doesn't restore old product id's. SwiftyStoreKit.restorePurchases(atomically: true) { results in APP

How to change non-consumable to auto-renewable subscriptions and keep old user?

房东的猫 提交于 2020-04-07 02:00:08
问题 I've had in-app purchase feature with non-consumable pricing in Apple Store. And the app has pricing to use it. How to change non-consumable to auto-renewable subscriptions? Somehow keep user who purchased the app. And new user charge with auto-renewable subscriptions. 回答1: No you can't change it, just make sure in your App, you use [[SKPaymentQueue defaultQueue]restoreCompletedTransactions]; Restore old purchase and check if you find that the user has purchased the non-consumable product

I want to integrate my website with AppStore to let customer pay through AppStore

本小妞迷上赌 提交于 2020-03-27 02:53:39
问题 I have an app that allows customer to do in app purchase. I also have a website and I'd like to let customer to pay on the website through as well, that is, make in app purchase also works on website. I am not sure if Apple allows their in app purchase work outside of apps, and if it does, how can I do that? My website is written in Java Thanks. 回答1: You cannot implement in app purchases outside of the Apple ecosystem. You would have to take payment another way through your website and then

On Initialization Failure in google play IAP?

只谈情不闲聊 提交于 2020-03-25 17:48:06
问题 I'm trying to create IAP in my app using google play console. I already uploaded an APK in the internal test track and added 1 product in Manage Product Tab. When I tried to run it in an android phone, OnInitializeFailed InitializationFailureReason:NoProductsAvailable appears in the logs. But when I run it in my editor, it returns OnInitialized:Pass . Do I need to create an alpha/beta just to test IAP? Editor Logs: Android Mobile Logs: Warning Unavailable product book_1 -book_1 UnityEngine

Question about server-to-server notification

孤街醉人 提交于 2020-03-24 09:43:21
问题 As Apple doc said in this doc: https://developer.apple.com/documentation/appstoreservernotifications/notification_type?changes=_2 Subscription event | Notification types triggered ----------------------------------------------------------------------------- . . . Auto-renewal disabled (canceled) from the App Store account's Subscriptions settings | DID_CHANGE_RENEWAL_STATUS AppleCare refund | CANCEL, DID_CHANGE_RENEWAL_STATUS When AppleCare refund happend, there are two notification types

Is showing the payment pages using Webview solves the App-store's In-App Purchase issue?

|▌冷眼眸甩不掉的悲伤 提交于 2020-03-03 07:44:30
问题 I got a new message from Appstore for my new app submission: Guideline 3.1.1 - Business - Payments - In-App Purchase We noticed that your app or its metadata enables the purchase of content, services, or functionality in the app by means other than the in-app purchase API, which is not appropriate for the App Store. My app has a payment feature and I have implemented it using stripe. The payment feature is implemented on sign up, free trial and manage subscription pages. Currently, I have

Spinnaker authentication using IAP

有些话、适合烂在心里 提交于 2020-03-03 04:43:10
问题 We are trying to enable authentication in Spinnaker using IAP. Spinnaker is deployed in GKE using HAL Deck and Gate are exposed to different domains using Ingress and HTTPS is enabled for both. IAP is enabled and credential is created. HAL configurations for IAP have been done and redeployed. BaseURLs for UI & API have been set. CORS pattern is set to the UI URL. Now when i try to open the application, initially the redirects to https://accounts.google.com/o/oauth2/v2/auth?.... fails a few

Spinnaker authentication using IAP

风格不统一 提交于 2020-03-03 04:43:07
问题 We are trying to enable authentication in Spinnaker using IAP. Spinnaker is deployed in GKE using HAL Deck and Gate are exposed to different domains using Ingress and HTTPS is enabled for both. IAP is enabled and credential is created. HAL configurations for IAP have been done and redeployed. BaseURLs for UI & API have been set. CORS pattern is set to the UI URL. Now when i try to open the application, initially the redirects to https://accounts.google.com/o/oauth2/v2/auth?.... fails a few

Receipt validation issue in App Purchases Mac Store “Receipt validation should be presented…”

杀马特。学长 韩版系。学妹 提交于 2020-02-24 11:15:50
问题 My applications uses the Store Kit API to purchases in app purchases. I am getting the following store rejection issue, has anyone ever encountered this? 2.3 Apps that do not perform as advertised by the developer will be rejected The app is not using the Store Kit API properly. The application needs to use receipt validation in order for Store Kit to properly process In App Purchases. I inquired further and they said: Receipt validation should be presented on launch of the app. Anyone have