I'm trying to implement in-app purchase.
Already I registered a few in-app purchases in iTunes Connect. I think it's enough for an app to figure out in-app purchases. But SKProductsRequest should be initialized with product IDs.
[[SKProductsRequest alloc] initWithProductIdentifiers:[NSSet setWithArray:productIdentifiers]];
SKProductRequest can know that names, prices and product IDs of in-app purchases When it communicates with Apple server even without initialization by productIdentifiers. right?
So, I don't understand why SKProductsRequest needs product IDs. Can I use it without product IDs for retrieving in-app purchases content from Apple server?