Skip to content
Discussion options

You must be logged in to vote

Ooooh I get it now! This obfuscated ID is set on the initial purchase request, so theoretically you could use this to match to the user no matter which request happens first since it's going to be set way before any request has arrived...makes sense now!

For other readers in my boat:

  • Generate an obfuscated ID attached to your user (my case is easy, I have a hash-slug derived from the User's ID)
  • Set this obfuscated ID in your request purchase (below example is using expo-iap)
  request: {
    ios: {
      sku: productId,
      appAccountToken: 'user-123',
    },
    android: {
      skus: [productId],
      obfuscatedAccountIdAndroid: 'user-123',
    },
  },
});
  • Any RTDN subscription n…

Replies: 3 comments 1 reply

Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
1 reply
@huwcarwyn
Comment options

Comment options

You must be logged in to vote
0 replies
Answer selected by huwcarwyn
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants