IsThereAnyDeal / IsThereAnyDeal-Issues

16 stars 0 forks source link

EA App as Store #3514

Open fthdgn opened 12 months ago

fthdgn commented 12 months ago

Could you add EA App as store.

I am using TR regions and I don't see EA App on any game which is sold on EA App.

Dead Space 2023 https://isthereanydeal.com/game/deadspace2023/info/ Listed stores. Epic Game Store: 999.99 TL Steam: 1733.72 TL

Missing Store: EA App: 999.99 TL https://www.ea.com/games/dead-space/dead-space/buy/pc

For development side, here are some of my findings Games are listed on this page: https://www.ea.com/games/library/pc-download

This endpoint returns price information: https://service-aggregation-layer.juno.ea.com/graphql

It requires three query params. operationName: GameOffers variables: url encoded version of this json. Game id is slug of the page of the game.

{"overrideCountryCode":"TR","gameId":"dead-space"}

extensions: url encoded version of this json. I don't know what's sha it is, but it works without changing it.

{"persistedQuery":{"version":1,"sha256Hash":"1b08dff7328b969bfefc4ee05b3eeeb6980552ede8b857b0c46c471edd12d14b"}}

Example URL for Dead Space https://service-aggregation-layer.juno.ea.com/graphql?operationName=GameOffers&variables=%7B%22overrideCountryCode%22%3A%22TR%22%2C%22gameId%22%3A%22dead-space%22%7D%0A&extensions=%7B%22persistedQuery%22%3A%7B%22version%22%3A1%2C%22sha256Hash%22%3A%221b08dff7328b969bfefc4ee05b3eeeb6980552ede8b857b0c46c471edd12d14b%22%7D%7D

P.S: I searched EA App and Origin on issues but cannot find anything.