Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.

eidmohd89's avatar

POST Requests from external server redirects to GET request.

I have created a Zoom app that sends every meeting participants to and endpoint to our server. It works fine on the test server. On production, the post is redirected to GET request. The Nginx log is given bellow:

"POST /zoom/meeting-participants HTTP/1.1" 301 194 "-" "Zoom Marketplace/1.0a"

I also tried it with Postman and the nginx log looks like bellow:

[27/Feb/2025:16:48:06 +1100] "POST /api/zoom/meeting-participants HTTP/1.1" 301 194 "-" "PostmanRuntime/7.43.0"
[27/Feb/2025:16:48:09 +1100] "GET /api/zoom/meeting-participants HTTP/1.1" 404 10830 "https://mysite.com.au/api/zoom/participant-registration" "PostmanRuntime/7.43.0"

I tried all possible changes on the nginx configuration but it did not help. The configuration file is given bellow:

I am not sure if the Laravel app causes this issue as it works fine on our test server. Can someone help me with this?

Many Thanks

1 like
3 replies
martinbean's avatar

@eidmohd89 This is most likely a HTTP-to-HTTPS redirect occurring. You need to see the full URL being requested, not just the path.

1 like

Please or to participate in this conversation.