in-app-purchase

Cannot connect to iTunes Store (to get in-app purchase listing)

那年仲夏 提交于 2019-12-24 05:36:05
问题 I am trying to get the listing from the store of in-app purchase items for my app. Here is what I have done: installed new provisioning profile with In-App Purchases enabled. (Replacing the provisioning profile was tricky but I think I have it correct) verified that tax and banking info is OK. (The app is already for sale in the store). created test user logged in with test user on test device (device is not jail-broken) created in-app purchase items and set Cleared for Sale to Yes. (Items

Inapppurchases: get api query failed “code”:400,“message”:“Invalid Value” “code”:500,“message”:null

半城伤御伤魂 提交于 2019-12-24 03:39:12
问题 I get access_token by this way :https://developers.google.com/android-publisher/authorization 1.use google account allow acess get code 2.use code to get refresh_token 3.use refresh_token get access_token when use this api $url_purchase = "https://www.googleapis.com/androidpublisher/v1.1/applications". "/$packageName/inapp/$productId/purchases/$token?access_token=". $return_data->access_token; $return_purchase = http_get($url_purchase); some billing return {"error":{"code":500,"message":null}

Unneccessary Privacy Policy For Entitlements? [closed]

Deadly 提交于 2019-12-24 03:29:31
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 2 years ago . I am attempting to submit my first app into the ios app store, however I am receiving this annoying error: Apps that use the entitlements [com.apple.developer.in-app-payments] must have a privacy policy URL for [English]. If your app doesn’t use these entitlements, remove them from your app and upload a new

Error Domain=SKErrorDomain Code=3 UserInfo=0x2a5a00 “Cannot connect to iTunes Store”

ぃ、小莉子 提交于 2019-12-24 02:24:19
问题 I am trying to implement in-app purchases in my application. I have implemented it as per Apple's Programming Guide and the code was working fine until I created a new application, App ID, provisioning profile and in-app products @ another developer account. Now, it gives me following error. Error Domain=SKErrorDomain Code=3 UserInfo=0x2a5a00 "Cannot connect to iTunes Store" The same code works fine if I use previous developer account's appid, pro-certificate and product ids. This is a very

Android IAB: Billing service unavailable on device

久未见 提交于 2019-12-24 02:13:52
问题 I am trying to implement IAB in my app. Each time the app starts, the start up fails with: Problem setting up In-app Billing: IabResult: Billing service unavailable on device. (response: 3:Billing Unavailable) I've tried literally everything: Ensuring I have the com.android.vending.BILLING permission in the manifest. Uploading the APK to the beta channel with both versions corresponding. Using test accounts. Clearing the Google Play cache. Making sure I have the latest Google Play services in

android billing inApp/subscription Unable to find explicit activity ProxyBillingActivity

别等时光非礼了梦想. 提交于 2019-12-24 02:12:06
问题 I want to implement subscription billing feature, but when i call launchBillingFlow method, i am getting error like this android.content.ActivityNotFoundException: Unable to find explicit activity class {com.calendargb/com.android.billingclient.api.ProxyBillingActivity}; have you declared this activity in your AndroidManifest.xml Here it is my sample BillingFlowParams purchaseParams = BillingFlowParams.newBuilder() .setSku(skuId).setType(billingType).setOldSku(oldSku).build(); mBillingClient

iOS7 xCode5 how to resolve “invalid product ID” for in app purchases in 2014?

。_饼干妹妹 提交于 2019-12-24 01:13:24
问题 I'm trying to implement in-app purchases in one of my apps, and have an issue where I get no products returned when I send a product request for sandbox testing. I see a lot of very old posts, like this one (invalid product id from 2010). What am I doing wrong with my in app purchase setup? Is there any recent tutorials on how to configure xCode5 to use in app purchasing? - (void)requestProUpgradeProductData { NSSet *productIdentifiers = [NSSet setWithObject:self.productID ]; productsRequest

In App Purchase does not change its state to SKPaymentTransactionStatePurchased

无人久伴 提交于 2019-12-24 00:47:15
问题 I have added in app purchase feature to my iphone-ipad application and it is working in app store right now. I am updating this app and using method below to get transaction State notification - (void)paymentQueue:(SKPaymentQueue *)queue updatedTransactions:(NSArray *)transactions { for (SKPaymentTransaction *transaction in transactions) { NSLog(@"Payment Queue"); switch (transaction.transactionState) { case SKPaymentTransactionStatePurchased: [self completeTransaction:transaction]; break;

can we test the in-app purchase android application via GOOGLE APIs emulator

情到浓时终转凉″ 提交于 2019-12-24 00:43:30
问题 I have one question in my mind that can we test the in-app purchase application in Google Apis emulator with different api level? Any information regarding this will be welcomed. 回答1: You cannot test services like in app billing and LVL on emulators as they lack Google Play, which acts as a middleman between your app and then launch Google servers. Additionally, the accounts you can configure on the emulator are limited in functionality. See this for details on testing. 回答2: No, you can't.

How to implement Android In App Subscription API for monthly subscription of my application?

浪子不回头ぞ 提交于 2019-12-24 00:39:15
问题 I have made an application which I want to publish on Google Play and want to set monthly subscription plan for this app. For example first month I will give app as trail for one month and after that every month I will charge $1 to use my application service. I have studied about Android In App Subscription API but not able to understand the whole concept. Now my question are? How to handle the trial of application. How to make payment when trail is over? Hoe to handle the subscriptions? What