export type CurrentEntitlementsResponseCode = -1 | 0 | 1 | 2;
export type CurrentEntitlementsResponseMessage = "Incompatible with web" | "Successfully found all entitlements across all product types" | "No entitlements were found" | "Unknown problem trying to retrieve entitlements";
Based on these types I expected to get a 1 responseCode when no entitlements are found. Instead it gives a 404 response code. (tested with iOS Xcode sandbox)
{"responseCode":404,"responseMessage":"No entitlements were found"}
Based on these types I expected to get a
1
responseCode when no entitlements are found. Instead it gives a 404 response code. (tested with iOS Xcode sandbox)