I was making requests to an api when at the moment they updated the platform and changed the way of sending the body of the requests since they are encrypted. Example of what is sent now.
eyJhbGciOiJSU0EtT0FFUC0yNTYiLCJlbmMiOiJBMjU2R0NNIn0.bhPQqL8rheiAAv-c9m1wMrisHyJWwDgo5BftGHJ5xHuoG50VdZCxX7rF_nTgB10BLcKz4EGzxGA-0RfZqaNPaYou7h4dvMgX1MxuyRQJBay4ls1rrDDYHC0RElEgLwZrdgQNwJru3WBs-D33nhwV2eAgO3l4r_sUctmPxh79yeKkCPFSCUWpJH3zqDSOXhlJIK2ZJCzG0BX8C1ZUGiFn_woIO_tNrO7NI2WAQVwd5jO9RWBufn_xORyR3sdwScfAJn-0rqq83d7ub8K_dB7nVSvMEbtmacPBy2-vscC7WVHob5uYHyH9tYBWbgttxNOtjdT4tj5pURImXBh8FnpA2w.FEc_FBP4swn-Ux6L.B9uY4iFVSL498r3BFhgOk2Nhx-15VJAsEXP4VnbfYb-U13fOj-o47YY2vBa1HXItWksweed7O8Wkt9bH9kZG75llZgQT0WJJBIGHLQLObDyEmtPBDkUgsk8gLYtDvE5qHKoy1iLIQd78FMcxwN4M36Rv71pqmt62IugtLhHTMi70YiKPHN39hB-WNDSIlmO8tCu1m6FpDkkw4Qg8OOBRkABqi8sY0wxzW9B8orUahoUMOGwrGaY.dYMp4LA0CFpJg69lhXZkYw
Example of what was sent before
[{"operationName": "UserReservations","variables": {},"query": "query UserReservations {\n userReservation {\n variantId\n quantity\n id\n user\n __typename\n }\n}\n"}]
Looking for information I realized that you have to get the public key of the website that contains the necessary information for the encryption of the body of the request, could you help me with some documentation or on what I can base myself to be able to correctly encrypt the body of the request