Hey guys, we are using StoreKit - SKProductsRequest to fetch sku info from Apple.
But recently An unknown error occurred code = 0 the issue was spiking up since 2021 Dec 5th. Here is the request start code.
let request = SKProductsRequest(productIdentifiers: Set(skus))
request.delegate = self
request.start()
The error is raised from the delegate function:
func request(_ request: SKRequest, didFailWithError error: Error) {}
Over 90% of it happened to iOS 15.x users. Is there anyone know what's going on? or facing the same issue.