I'm at the end of my new application: An In-App purchase application with my own server for videos to sell, but I'm trapped in the purchasing process.
According Apple Docs this can be done, but I've read all Apple documentation about in-App purchase and I can't see how to manage this.
The products to sell will be hosted in my own server, so I suppose than I have not to register products in iTunes Connect, isn't it? the intention is to be able to add new products to sell without entering iTunes connect.
So that, is it necessary to use SKProductsRequest
?
I suposo than I have to use
SKPayment *payment = [SKPayment paymentWithProduct:product]
so that "product" has to be an SKProduct (or not?), and... where it comes from? from SKProductsRequest object? but SKProductsRequest gets products from iTunes connect and not from my own server.
And, what about product identifier? Apple Docs explain how to get products id... through Json ...but once i have this products ID. what else?.
Well I think my ignorance on this subject is amply demonstrated. I would appreciate some main points to follow.