You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When a user cancel a subscription and from server side I check the subscription later, I get VerificationFailure with code 21006 and message:
This receipt is valid but the subscription has expired. When this status code is returned to your server, the receipt data is also decoded and returned as part of the response.
The message is self explanatory, the subscription data should be parsed from the response. The result must contains a Receipt when call verify method and ReceiptCollection for verify_subscription method.
Changes must be done in the valid? method from class CandyCheck::AppStore::Verification and CandyCheck::AppStore::SubscriptionVerification in the same overridden method, valid?. It should allow to parse the response for code 21006 and not only for STATUS_OK = 0
Posible solution for CandyCheck::AppStore::Verification:
module CandyCheck
module AppStore
# Verifies a receipt block against a verification server.
# The call return either an {Receipt} or a {VerificationFailure}
class Verification
STATUS_EXPIRED = 21006
private
def valid?
@response && (@response['status'] == STATUS_OK || @response['status'] == STATUS_EXPIRED) && @response['receipt']
end
end
end
end
The text was updated successfully, but these errors were encountered:
catacs
changed the title
IOS expired subscription verification got VerificationFailure
IOS expired subscription verification return VerificationFailure
Jan 15, 2019
When a user cancel a subscription and from server side I check the subscription later, I get VerificationFailure with code 21006 and message:
The message is self explanatory, the subscription data should be parsed from the response. The result must contains a Receipt when call
verify
method and ReceiptCollection forverify_subscription
method.Changes must be done in the
valid?
method from classCandyCheck::AppStore::Verification
andCandyCheck::AppStore::SubscriptionVerification
in the same overridden method,valid?
. It should allow to parse the response for code 21006 and not only forSTATUS_OK = 0
Posible solution for
CandyCheck::AppStore::Verification
:The text was updated successfully, but these errors were encountered: