The game client requests this URL during game loading.:
http://prod-twcdn-tx.kurogame.net/prod/client/config/PQQdKhfClWoBi3Iq/com.kurogame.punishing.grayraven.tw/4.5.0/standalone/config.tab
Before this, the tw cdn needs to be added to proxy.py.
def _is_ascnet_host(host):
return host and (
host in {"sdkapi.kurogame-service.com", "sdkapi.kurogame-service.xyz"}
or (host.startswith(("prod-encdn-", "prod-twcdn-")) and host.endswith(".kurogame.net"))
)
def _is_feedback_request(flow):
return flow.request.pretty_host in ("prod.enzspnslog.kurogame.com", "prod.twzspnslog.kurogame.com") and flow.request.path.split("?", 1)[0] == "/feedback"
The game client requests this URL during game loading.:
http://prod-twcdn-tx.kurogame.net/prod/client/config/PQQdKhfClWoBi3Iq/com.kurogame.punishing.grayraven.tw/4.5.0/standalone/config.tab
Before this, the tw cdn needs to be added to proxy.py.