Earlier quoted context omitted.
Thanks for the links! Curious on the body -- you showed some JSON requests, but do image resources or other larger responses also get proxied and viewable from browser? For example, sometimes I like to view large minified JS blobs or images. Would that be viewable in the browser? Also, what do the production vs debugging logs look like? Do you just run a special debugging build or is that a flag triggered within pref…
Our Native SDK provides listening to API Requests and Analytics events in your app. In order to view JS blogs or Images, you can use the desktop app - https://requestly.io/desktop We provide the capability that you can disable the SDK in production builds and enable only in the debug builds. And yes we are going to provide the capability using which you can download or share the APIs and events sessions with your sup…
Launch HN: Requestly (YC W22) – Network debugging proxy for web and mobile
51–60 of 87 posts
Re: Launch HN: Requestly (YC W22) – Network debugging proxy for web and mobile
#52Re: Launch HN: Requestly (YC W22) – Network debugging proxy for web and mobile
#53I'm interested in this for its potential reverse engineering apps on Android. I've had some success with `mitmproxy` but I'm wondering what other HN-ers use for this purpose.
https://dutzi.github.io/tamper/
https://www.telerik.com/fiddler
https://github.com/alibaba/lightproxy
https://wiki.squid-cache.org/Features/SslPeekAndSplice
http://www.tofuproxy.stargrave.org/
https://github.com/http-party/node-http-proxy
Re: Launch HN: Requestly (YC W22) – Network debugging proxy for web and mobile
#54How challenging will it be to continue offering Chrome browser extension with the v3 manifest changes related to the blocking webRequest API? Does it impact requestly?
The Linux page, https://requestly.io/downloads/linux/, has MacOS instructions instead of Linux.
Re: Launch HN: Requestly (YC W22) – Network debugging proxy for web and mobile
#55You could likely benefit from having a designer look at your onboarding flow. I get it's a developer tool, but the Docs, Pricing and Homepage are completely different colour schemes (Pricing defaults to dark on my machine) and this comes across as a disjointed product (and is quite an easy win!). Sure, it's a dev-tool and we're not as fussed about design. But the pricing page has so much going on at once that I strug…
Thank you for the feedback. Landing pages need more work. We've recently worked on our pricing page so I'd really appreciate if you can provide more insights into what can be improved on the pricing page.
Maybe A/B test the page with and without all the ratings/endorsements and see if one leads to better conversion.
Re: Launch HN: Requestly (YC W22) – Network debugging proxy for web and mobile
#56There's a site I use that checks for membership only on the client side and I use requestly to spoof premium status. Just had to write a simple script like this to modify the response body of the request that gets membership status: function modifyResponse(args) { const {method, url, response, responseType, requestHeaders, requestData} = args; const responseDataParsed = JSON.parse(response); responseDataParsed.result…
Re: Launch HN: Requestly (YC W22) – Network debugging proxy for web and mobile
#57Earlier quoted context omitted.
Our Native SDK provides listening to API Requests and Analytics events in your app. In order to view JS blogs or Images, you can use the desktop app - https://requestly.io/desktop We provide the capability that you can disable the SDK in production builds and enable only in the debug builds. And yes we are going to provide the capability using which you can download or share the APIs and events sessions with your sup…
With the desktop app, could network requests from .NET apps / more traditional software be intercepted / listened to?
Re: Launch HN: Requestly (YC W22) – Network debugging proxy for web and mobile
#58Congratulation! We are big fans of Requestly at Caido as we are building something somewhat similar for the infosec community ( https://caido.io ). Requestly feels good and there is a lot of potential for production debugging. I particularly like the switching of API endpoint so you can use the live prod website with a local API, super useful to debug.
If your interest extends to debugging production backends you can also check out Lightrun ( https://lightrun.com ) which continues this all the way through.
Re: Launch HN: Requestly (YC W22) – Network debugging proxy for web and mobile
#59Folks in the windows ecosystem have had the benefit of Fiddler for more than a decade now. Glad to see a more universal solution.
Re: Launch HN: Requestly (YC W22) – Network debugging proxy for web and mobile
#60I'm interested in this for its potential reverse engineering apps on Android. I've had some success with `mitmproxy` but I'm wondering what other HN-ers use for this purpose.
Same. mitmproxy (and its built-in mitmdump lib), along w/ the (criminally obscure / amazing) lnav ( https://lnav.org ), have served me very well in the past for this kind of thing.