Open ktmohammedsulaim opened 1 year ago
hi, I also facing this issue. please let me know if you can solved this.
@supakornkim Not yet. I couldn't find a solution for this issue
I think it's something to do with CORS, can you try something like this.
app.use(cors({ origin : '*'}));
Or just allow CORS for one particular route!
Hi, I've implemented signed URL feature for unsubscribing email notifications and it works fine in the local environment. But, when the code was deployed to the server it always throws 403 Forbidden resource error. We are using https reverse proxy with Apache web server along with pm2. But even after adding
app.set('trust proxy', true);
to themain.ts
file. It's still throwing the error.