You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
I have an existing POST request to an external api. No changes have been made to the request since June. I tried executing the request today, but I'm now receiving a 404 with the error 'Handler for Request not found.'
To Reproduce
Steps to reproduce the behavior:
Click SEND for an existing api request in postman
Body = form data with three variables
Headers = content type: application/x-www-form-urlencoded + 8 other temporary headers
See error:
Handler for Request not found:
Request.HttpMethod: GET
Request.HttpMethod: GET
Request.PathInfo: [api url goes here]
Request.QueryString:
Request.RawUrl: [api url goes here]
Expected behavior
HTTP 200 response
App information (please complete the following information):
Postman Version [e.g. 7.5.0]
OS: [Windows 10 Enterprise]
Additional context
Able to send and receive a successful 200 OK response with the following in a simple python script.
@MECLab-Michelle Can you try disabling "Automatically follow redirects" option in settings and check what's the status code of the API response? Is it a 301 or 302?
@MECLab-Michelle please let us know if the above step solved your problem? Closing the issue for now, feel free to reopen and comment if it is not solved.
Describe the bug
I have an existing POST request to an external api. No changes have been made to the request since June. I tried executing the request today, but I'm now receiving a 404 with the error 'Handler for Request not found.'
To Reproduce
Steps to reproduce the behavior:
Body = form data with three variables
Headers = content type: application/x-www-form-urlencoded + 8 other temporary headers
Handler for Request not found:
Request.HttpMethod: GET
Request.HttpMethod: GET
Request.PathInfo: [api url goes here]
Request.QueryString:
Request.RawUrl: [api url goes here]
Expected behavior
HTTP 200 response
App information (please complete the following information):
Additional context
Able to send and receive a successful 200 OK response with the following in a simple python script.
request = requests.post(api_url, data={'APIKey': api_key, 'SurveyId': survey_id, 'FromResultId': from_result_id})
Is this due to the addition of temporary headers?
Why does postman think this is a GET request?
The text was updated successfully, but these errors were encountered: