Search results for

[tags:wwdc20-10661]

14 results found

Post

Replies

Boosts

Views

Activity

Family Sharing IAP Transaction IDs
Are the original_transaction_id fields in family sharing in-app purchase receipts populated with the ID of the original transaction (from the original purchaser), or does each family member get a new independent one? We're interested in supporting Family Sharing for our non-consumable in-app purchases, but since we also allow purchases to be activated on the web / other platforms, we're concerned that Family Sharing might enable somebody to create multiple accounts from a single purchase and use them independently on many more devices.
2
0
1.5k
Dec ’23
Family Sharing - Auto Renewing Subscription
At the moment we have an auto renewing subscription and we use the original_transaction_id as a marker in our database. If we turn on Family Sharing it was mentioned that each family member gets a transaction in the queue on their device. Will the original_transaction_id be the same for each user or will each user/Apple ID get their own unique receipt and set of transactions? Or is it simply a copy of the primary user?
6
0
2.5k
Dec ’20
How to test SkAdNetwork postbacks in a timely manner?
Hi, We've recently registered our signing keys as an ad network. We want to verify our implementation of SkAdNetwork, and start receiving postbacks. However, for development purposes, waiting 24 hours for each postback experiment is inefficient and we'd love to progress in shorter cycles. What's the proposed way to test SkAdNetwork's implementation?
4
0
1.9k
Aug ’20
Do I have to use SKAdNetwork even if the user allows me to use IDFA?
Hi, there. I create AdNetwork SDK for iOS. New SKAdNetwork framework is the ability to measure conversions even for users who are not allowed to use IDFA, right? So, if a user is allowed to use IDFA, do I not have to use SKAdNetwork? In case of current my SDK, It launch Safari and browse landing page with IDFA and redirect to AppStore when users click ad. In this case, I don't think it's necessary to use SKAdNetwork because I can use IDFA to measure the conversion, is that correct?
4
0
1.4k
Aug ’20
Is it OK to measure conversion by any UUID which published by my SDK?
When using any marketing solution(ex. AppsFlyer, adjust), we publish some UUID and launch Safari and browse landing page with it if a user reject to use IDFA, And marketing's SDK launch Safari at advertised application's first launch. There are no issues with the application used my SDK being rejected from the Appstore this way, right?
2
0
553
Aug ’20
How to use SKOverlay in App Clips ?
My code: UIWindowScene *scene = self.view.window.windowScene; if (!scene) { return; } SKOverlayAppClipConfiguration *configuration = [[SKOverlayAppClipConfiguration alloc] initWithPosition:SKOverlayPositionBottom]; SKOverlay *overlay = [[SKOverlay alloc] initWithConfiguration:configuration]; [overlay presentInScene:scene]; it doesn't work, and console show: 2020-07-11 08:31:47.707243+0800 Clip[960:284396] Unable to setup extension context - error: Couldn’t communicate with a helper application. 2020-07-11 08:31:47.707704+0800 Clip[960:284191] Unable to instantiate remote view controller with error: Couldn’t communicate with a helper application. 2020-07-11 08:31:47.707895+0800 Clip[960:284191] An error occurred while loading the view service: Couldn’t communicate with a helper application. 2020-07-11 08:31:47.708123+0800 Clip[960:284191] Sending failed events to all overlays because of error: The operation couldn’t be completed. (SKErrorDomain error 0.) 2020-07-11 08:31:47.708307+0800 Clip[960:284191] [ASORem
1
0
1k
Jul ’20
Refund changes
The WWDC video talks about server getting notification when a user refunds their purchase (subs/non-consumables/etc...). What about the receipt when we call verify, does it also get updated now? That is, receipts with subscriptions have always been updated with a cancellation field, but our non-consumables never get updated during this call, just verified/parsed. Currently we need to do a Reload, user needs to allow it (i.e. enter pwd), so we can get an updated receipt that shows any refund.
1
0
564
Jun ’20
Choose correct receipt_info from unified_receipt
Hello, since some fields of the Apple Server-Server Notifications are scheduled for deprecation - https://developer.apple.com/documentation/appstoreservernotifications like latest_receipt_info and instead unifiedreceipt should be used, my question is how to identify the current receiptinfo from the array latest-receipt-info inside the unified receipt. For the CANCEL nofitification, I can filter by web-order-line-item-id, but this field is not present for the other notifications. How do I get the current receipt_info from the array in unified receipt?
0
0
365
Aug ’20
Receipts in Family Shaing
Dear community, here is a technical question about Family Sharing of auto-renewable subscriptions, so as to perform server-side receipt validation. When a second User gets the subscription thanks to Family Sharing, what are the transaction_id and original_transaction_id IDs of the transactions contained in the app receipt (I mean /verifyReceipt response body) ? More specifically: will it contain the same transactions (I mean: same transaction ID) as the first User? or will it contain new transaction IDs? will these transactions have same original transaction ID as the ones of the first User. if Family Sharing is turned off, will the subscriptions of the second User disappear of the app receipt? Or be marked as cancel with some cancellation_date or such? Thank you very much in advance for any insight. P.S: these questions are only about the server-side receipt. On the mobile side, it is almost clear that StoreKit would generate a new transaction with a new transaction ID, as it does when restoring. P.P.S. : th
0
0
595
Sep ’20
Family Sharing IAP Transaction IDs
Are the original_transaction_id fields in family sharing in-app purchase receipts populated with the ID of the original transaction (from the original purchaser), or does each family member get a new independent one? We're interested in supporting Family Sharing for our non-consumable in-app purchases, but since we also allow purchases to be activated on the web / other platforms, we're concerned that Family Sharing might enable somebody to create multiple accounts from a single purchase and use them independently on many more devices.
Replies
2
Boosts
0
Views
1.5k
Activity
Dec ’23
Family Sharing - Auto Renewing Subscription
At the moment we have an auto renewing subscription and we use the original_transaction_id as a marker in our database. If we turn on Family Sharing it was mentioned that each family member gets a transaction in the queue on their device. Will the original_transaction_id be the same for each user or will each user/Apple ID get their own unique receipt and set of transactions? Or is it simply a copy of the primary user?
Replies
6
Boosts
0
Views
2.5k
Activity
Dec ’20
SKPayment.applicationUsername is null
when SKPaymentTransactionStatePurchased get SKPaymentTransaction value :transaction.payment.applicationUsername is null base: Xcode Version 12.0 beta (12A6159) iOS 14.0 (18A5301v) print: (lldb) p transaction.payment.applicationUsername (NSString *) $1 = nil Will the official version of iOS 14 always be like this? please~
Replies
5
Boosts
0
Views
1.3k
Activity
Sep ’20
How to pre-load SKOverlay?
SKOverlay takes sometime to show up in the view because it has to fetch the app info from the server. So, is it possible to create SKOverlay beforehand and configure it to load the app info prior to calling present method? Because, with the current system, the user may leave the screen we want to show the SKOverlay before it shows up.
Replies
1
Boosts
0
Views
815
Activity
Sep ’20
How to test SkAdNetwork postbacks in a timely manner?
Hi, We've recently registered our signing keys as an ad network. We want to verify our implementation of SkAdNetwork, and start receiving postbacks. However, for development purposes, waiting 24 hours for each postback experiment is inefficient and we'd love to progress in shorter cycles. What's the proposed way to test SkAdNetwork's implementation?
Replies
4
Boosts
0
Views
1.9k
Activity
Aug ’20
Do I have to use SKAdNetwork even if the user allows me to use IDFA?
Hi, there. I create AdNetwork SDK for iOS. New SKAdNetwork framework is the ability to measure conversions even for users who are not allowed to use IDFA, right? So, if a user is allowed to use IDFA, do I not have to use SKAdNetwork? In case of current my SDK, It launch Safari and browse landing page with IDFA and redirect to AppStore when users click ad. In this case, I don't think it's necessary to use SKAdNetwork because I can use IDFA to measure the conversion, is that correct?
Replies
4
Boosts
0
Views
1.4k
Activity
Aug ’20
Is it OK to measure conversion by any UUID which published by my SDK?
When using any marketing solution(ex. AppsFlyer, adjust), we publish some UUID and launch Safari and browse landing page with it if a user reject to use IDFA, And marketing's SDK launch Safari at advertised application's first launch. There are no issues with the application used my SDK being rejected from the Appstore this way, right?
Replies
2
Boosts
0
Views
553
Activity
Aug ’20
How to use SKOverlay in App Clips ?
My code: UIWindowScene *scene = self.view.window.windowScene; if (!scene) { return; } SKOverlayAppClipConfiguration *configuration = [[SKOverlayAppClipConfiguration alloc] initWithPosition:SKOverlayPositionBottom]; SKOverlay *overlay = [[SKOverlay alloc] initWithConfiguration:configuration]; [overlay presentInScene:scene]; it doesn't work, and console show: 2020-07-11 08:31:47.707243+0800 Clip[960:284396] Unable to setup extension context - error: Couldn’t communicate with a helper application. 2020-07-11 08:31:47.707704+0800 Clip[960:284191] Unable to instantiate remote view controller with error: Couldn’t communicate with a helper application. 2020-07-11 08:31:47.707895+0800 Clip[960:284191] An error occurred while loading the view service: Couldn’t communicate with a helper application. 2020-07-11 08:31:47.708123+0800 Clip[960:284191] Sending failed events to all overlays because of error: The operation couldn’t be completed. (SKErrorDomain error 0.) 2020-07-11 08:31:47.708307+0800 Clip[960:284191] [ASORem
Replies
1
Boosts
0
Views
1k
Activity
Jul ’20
Family sharing option be available in AppStore Connect
When will the family sharing option be available and will it also work on devices running previous versions of iOS (e.g. older devices).
Replies
1
Boosts
0
Views
1.1k
Activity
Jun ’20
Refund changes
The WWDC video talks about server getting notification when a user refunds their purchase (subs/non-consumables/etc...). What about the receipt when we call verify, does it also get updated now? That is, receipts with subscriptions have always been updated with a cancellation field, but our non-consumables never get updated during this call, just verified/parsed. Currently we need to do a Reload, user needs to allow it (i.e. enter pwd), so we can get an updated receipt that shows any refund.
Replies
1
Boosts
0
Views
564
Activity
Jun ’20
Choose correct receipt_info from unified_receipt
Hello, since some fields of the Apple Server-Server Notifications are scheduled for deprecation - https://developer.apple.com/documentation/appstoreservernotifications like latest_receipt_info and instead unifiedreceipt should be used, my question is how to identify the current receiptinfo from the array latest-receipt-info inside the unified receipt. For the CANCEL nofitification, I can filter by web-order-line-item-id, but this field is not present for the other notifications. How do I get the current receipt_info from the array in unified receipt?
Replies
0
Boosts
0
Views
365
Activity
Aug ’20
How to Test handle refunds?
handle refunds, when buy consumables product, how to test App Store Notifications callback url?
Replies
0
Boosts
0
Views
506
Activity
Jun ’20
Auto renewal family sharing transaction_id
Hello ! How will the apple receipt will work for the auto renewal subscription family shareable ? Will the transaction_id be unique for the whole family, or still unique by user/plan ? Thank you
Replies
0
Boosts
0
Views
491
Activity
Jul ’20
Receipts in Family Shaing
Dear community, here is a technical question about Family Sharing of auto-renewable subscriptions, so as to perform server-side receipt validation. When a second User gets the subscription thanks to Family Sharing, what are the transaction_id and original_transaction_id IDs of the transactions contained in the app receipt (I mean /verifyReceipt response body) ? More specifically: will it contain the same transactions (I mean: same transaction ID) as the first User? or will it contain new transaction IDs? will these transactions have same original transaction ID as the ones of the first User. if Family Sharing is turned off, will the subscriptions of the second User disappear of the app receipt? Or be marked as cancel with some cancellation_date or such? Thank you very much in advance for any insight. P.S: these questions are only about the server-side receipt. On the mobile side, it is almost clear that StoreKit would generate a new transaction with a new transaction ID, as it does when restoring. P.P.S. : th
Replies
0
Boosts
0
Views
595
Activity
Sep ’20