Use hardcoded JWT token in AppleAppStoreBridge (#4803)* Use hardcoded JWT token in AppleAppStoreBridgeReplaces the dynamic extraction of the JWT token from the page meta tag with a hardcoded token, as the previous method stopped working. The token is sourced from Apple's own JavaScript and is valid until January 26, 2026.* Refactor AppleAppStoreBridge to simplify token handlingRemoved the getJWTToken() method and inlined the hardcoded JWT token directly into getAppData(). Updated HTTP headers for API requests to better mimic browser behavior and improve compatibility.* Split long JWT token string for readability* Fix long JWT token string concatenation style* Disable and re-enable PHPCS rule for token assignment* Update hardcoded Apple App Store tokenReplaced the hardcoded JWT token and its reference to the latest version from Apple's JavaScript source.