When the RESPONSE_KEY or SECRET_KEY has non-ascii characters or symbols, the product feed app breaks and returns {"error":"Internal server error"} when trying to preview the google.xml feed.
examle .env for products-feed that breaks the app:
REQUEST_SECRET="íôéššôťí-ščíšô-taíÁôshrioty^#-*-*jhúxžk-jh/"
SECRET_KEY="íôéššôťí-ščíšô-taíÁôshrioty^#-*-*jhúxžk-jh/"
...
|
authorization: env.REQUEST_SECRET, |
|
encryptionKey: env.SECRET_KEY, |
Issue could be on these lines, maybe the secret has to be made uri safe with encodeURI()? Or maybe saleor doesn't support non-ascii characers?