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
The test:request action in PostBin uses a GET, instead of a POST request:
In this screenshot, you can see the node implementation, the PostBin UI showing that request, and a postman API request fetching that request info:
It seems that even though the request is supposed to be a POST (based on this), it's sending a GET request.
The repercussion of this is that the body (the Bin Content field of the operation) is never sent, and the body in PostBin's UI doesn't show up, which would be confusing for a less technical person.
Note: not sure if it's in the scope of this, but the only way I was able to make PostBin show the contents of my request is by using something other than a JSON payload. Text/plain doesn't seem to work on PostBin (I even tried this from Postman, it seems like a limitation of sorts of PostBin?, I don't know):
To Reproduce
Create a PostBin node in any workspace.
Make a Send Request operation (add a pre-created bin id)
See the request in postbin's UI, or make an api request to https://www.postb.in/api/bin/BIN_ID/req/ID_FROM_POSTBIN_RESPONSE to check that the method is wrong.
Expected behavior
The request should be a POST request.
The bin content field should show up in PostBin's UI request info.
Operating System
Cloud
n8n Version
Latest Cloud version (I think it's 1.68)
Node.js Version
20.15
Database
SQLite (default)
Execution mode
main (default)
The text was updated successfully, but these errors were encountered:
Bug Description
The test:request action in PostBin uses a GET, instead of a POST request:
In this screenshot, you can see the node implementation, the PostBin UI showing that request, and a postman API request fetching that request info:
It seems that even though the request is supposed to be a POST (based on this), it's sending a GET request.
The repercussion of this is that the body (the Bin Content field of the operation) is never sent, and the body in PostBin's UI doesn't show up, which would be confusing for a less technical person.
Note: not sure if it's in the scope of this, but the only way I was able to make PostBin show the contents of my request is by using something other than a JSON payload. Text/plain doesn't seem to work on PostBin (I even tried this from Postman, it seems like a limitation of sorts of PostBin?, I don't know):
To Reproduce
https://www.postb.in/api/bin/BIN_ID/req/ID_FROM_POSTBIN_RESPONSE
to check that the method is wrong.Expected behavior
Operating System
Cloud
n8n Version
Latest Cloud version (I think it's 1.68)
Node.js Version
Database
SQLite (default)
Execution mode
main (default)
The text was updated successfully, but these errors were encountered: