108 Bewertungen
- Bewertet mit 4 von 5 Sternenvon Firefox-Benutzer 13894350, vor 8 Jahreni want the check box for parameter, and thats the reason why i havent choose rester until now
Antwort des Entwicklers
geschrieben am vor 8 JahrenThanks for your suggestion. That sounds like a good idea. I created an issue here, so you can keep track of the progress:
https://github.com/frigus02/RESTer/issues/57 - Bewertet mit 3 von 5 Sternenvon Firefox-Benutzer 13855357, vor 8 JahrenOut of the REST plugins that I've messed with, this is probably the easiest to get into.
That said, it's not without fault. There seems to be some sort of memory leak related to the history function. Too many large objects in the history and you're suddenly using gigs of data for the RESTer tab.Antwort des Entwicklers
geschrieben am vor 8 JahrenThanks for the hint. The memory issue definitely something I'm going to look into. I created an issue here, so you can keep track of the progress:
https://github.com/frigus02/RESTer/issues/58 - Bewertet mit 3 von 5 Sternenvon Firefox-Benutzer 13847856, vor 8 JahrenNice, but does not send GET request with body.
site/elements/data/scripts/request.js:
if (request.method.toLowerCase() !== 'head' && request.method.toLowerCase() !== 'get') {
init.body = requestBody;
}
Update:
I don't have much experieces with node.js, but...
Maybe it can be achieved with socket.io and emulate http protocol?
I wanted to use your extension for doing requests to elasticsearch, it uses GET and in http body is json.Antwort des Entwicklers
geschrieben am vor 8 JahrenHi, thanks for taking the time to dig into this issue. Unfortunately it is by design and there is no way to fix it (that I know of).
RESTer is a browser extension and the browser provides two ways of sending HTTP requests:
1. XMLHttpRequest: This ignores any specified body and sets it to null when the method is GET or HEAD.
2. fetch: This throws a TypeError when you specifiy a body and the method is GET or HEAD.
Browsers have good reason to do so. While, according to the HTTP/1.1 spec, you are allowed to send a request body with a GET or HEAD request, the server is advised to ignore the body when handling the request. See here for a good explanation:
https://stackoverflow.com/a/983458/1798215
That said, if you have ideas on how to handle this better, please let me know. I am definitely open to suggestions. Post them on GitHub or send me an email:
https://github.com/frigus02/RESTer/issues - Bewertet mit 5 von 5 Sternenvon Firefox-Benutzer 13842970, vor 8 Jahren
- Bewertet mit 5 von 5 Sternenvon Alexey, vor 8 JahrenGreat extension for backend debug. Supports JSON highlighting, which is cool.
- Bewertet mit 5 von 5 Sternenvon Firefox-Benutzer 13819094, vor 8 JahrenThis was exactly what I was looking for, plus the fact that it has a very nice interface.
- Bewertet mit 5 von 5 Sternenvon thureos, vor 8 JahrenWow, what a useful, polished, pleasing to the eye extension. Congrats to the dev team.
- Bewertet mit 5 von 5 Sternenvon Firefox-Benutzer 13801124, vor 8 Jahren
- Bewertet mit 5 von 5 Sternenvon dsdsds, vor 8 JahrenFor my uses, it pretty much has replaced Postman.
- Bewertet mit 5 von 5 Sternenvon Firefox-Benutzer 13782030, vor 8 Jahren
- Bewertet mit 5 von 5 Sternenvon Firefox-Benutzer 12748157, vor 8 Jahren
- Bewertet mit 4 von 5 Sternenvon Rodrigo Flores, vor 8 JahrenThere are some things you need to add to this addon:
1)Export/Import Request
2)Change the request title background color for the dark theme
3)Save cookies value as variablesAntwort des Entwicklers
geschrieben am vor 8 JahrenThanks for the review and the suggestions.
1) I'm already working on Export/Import functionality. It will take a bit of time to finish this, though.
2) I will think about changing the color or making it configurable but I consider this low priority. Let me know if this very important for you.
3) That's a great idea and something I have thought of as well. I definitely want to add something like this in the future.
One last note: RESTer is open source. If you like to contribute and add a certain feature, head over to https://github.com/frigus02/RESTer and open a pull request. I'm happy to help if you encounter any issues. - Bewertet mit 5 von 5 Sternenvon Firefox-Benutzer 13643499, vor 8 JahrenNice - just what was needed. Great color scheme too. Clean and simple to use.
Thanks! - Bewertet mit 5 von 5 Sternenvon gongxw, vor 9 Jahren
- Bewertet mit 5 von 5 Sternenvon Firefox-Benutzer 13510260, vor 9 JahrenNice product, with useful features! I'm giving this 5-stars even though the UI could use an improvement in the "AUTHORIZATION" section; sometimes authorization tokens can be really long, and when I saved my custom authorization, it showed up under "Use existing tokens" with no wrapping, extending the page horizontally and making it hard to use the buttons attached to the item.
- Bewertet mit 5 von 5 Sternenvon Firefox-Benutzer 13505290, vor 9 Jahrenit works smoothly. all I needed. thanks.
- Bewertet mit 5 von 5 Sternenvon 朱学通, vor 9 Jahren
- Bewertet mit 5 von 5 Sternenvon Firefox-Benutzer 13471360, vor 9 JahrenThank you for this nice tool. It would be great to add a feature to trim the body of POST requests. So if you want to add human readable and formated JSON string sometimes you need to remove all spaces and tabs because memory restricted system do not have space to receive it with it.
- Bewertet mit 5 von 5 Sternenvon Marco, vor 9 JahrenI installed this extension because the previous one I used is not compatible with FF 57.
However, I got to say that this is really a good one, and I like it more than the other I used.