apple / app-store-server-library-python

MIT License
146 stars 31 forks source link

app_apple_id for SignedDataVerifier should be `int` type, not `str` #37

Closed elonzh closed 10 months ago

elonzh commented 11 months ago
class SignedDataVerifier:
    """
    A class providing utility methods for verifying and decoding App Store signed data.
    """
    def __init__(
        self,
        root_certificates: List[bytes],
        enable_online_checks: bool,
        environment: Environment,
        bundle_id: str,
        app_apple_id: str = None,
    )
alexanderjordanbaker commented 10 months ago

Resolved in #45, thank you for the report