How to see items previously purchased (restore purchases)

Hi,

I am trying to find a list (or some other relatable object) that would allow me to see all non consumable objects that the user has previously purchased On Restore Purchase.



at the moment, using a third party plug in for all store activity, I can get a successful return of restore purchases, but I can not see what items I have and have not bought.



thanks.

There are two ways of seeing previous purchases.

https://developer.apple.com/library/ios/documentation/NetworkingInternet/Conceptual/StoreKitGuide/Chapters/Restoring.html#//apple_ref/doc/uid/TP40008267-CH8-SW9


1) You use StoreKit and call restoreCompletedTransactions. All transactions are returned in the delegate method updatedTransactions.

2) you refresh the receipt and examine the new receipt.

How to see items previously purchased (restore purchases)
 
 
Q