Get product's Reference Name for iOS In-App-Purchase product from within App

1.5k Views Asked by At

Is it possible for an app to retrieve the Reference Name of an iTunes Connect In-App-Purchase product?

The SKProduct object only seems to give access to the product ID, the localized title and description, as well as pricing info.

2

There are 2 best solutions below

0
On BEST ANSWER

Impossible. Reference name is a internal name in iTunes Connect configuration.

The product’s reference name is displayed in iTunes Connect and in Sales and Trends reports. It isn’t displayed on the App Store.

You can't retrieve the Reference Name for an app.

2
On

it's possible to Get product's Reference Name.Using below line you can get Reference name of product :

product.localizedDescription

Thank you.