fancy45daddy
fancy45daddy
in nodejs v21.2.0 await globalThis.fetch('https://bit.ly/48b82fP').then(_ => _.url) just show the first redirect url: https://l.facebook.com/l.php?u=https://f.theloadedbaze.com/%3Ffbclid%3DIwAR09e4iW8r6DAGuJbtEfepgIwLKm1zsIcavDGWT7gbFqyX4E56N7fL9pQNQ&h=AT1dnnHhh3K5JfViDpurjF0I833b7Fs5ukXQIDMNju_dSkagEbhuGB1zjjrFKuOZF2k6IU9MSTTwz0FlSoW761RP7xoRXBay0mUmD5bJYggSXdVlLwb4vOVlNXcM3oRnYMlwr_sh4RQ But in node-fetch: import fetch from 'node-fetch' await globalThis.fetch('https://bit.ly/48b82fP').then(_ => _.url) show the final redirect url:...
I use the following command: ssh -oStrictHostKeyChecking=no -oProxyCommand='ssh -oStrictHostKeyChecking=no -T [email protected]' u180599@ and my own key id_rsa which is in ~/.ssh to connect to intel cloud and success. Now I...
I want to capture the http traffic in nodejs fetch and python urllib.request run ``` sudo ecapture tls ``` first then in node run ``` await globalThis.fetch('https://httpbin.org/ip').then(_ => _.json()) ```...
I try curl https://httpbin.org/ip But in sudo ecapture tls 00000000 00 00 12 04 00 00 00 00 00 00 03 00 00 00 80 00 |................| 00000010 04 00...
I install redroid (https://github.com/remote-android/redroid-doc) in oracle aarch64 machine and I want to install ecapture in the redroid. I see there are [ecapture-v0.7.3-android-aarch64-nocore.tar.gz](https://github.com/gojue/ecapture/releases/download/v0.7.3/ecapture-v0.7.3-android-aarch64-nocore.tar.gz) and [ecapture-v0.7.3-android-aarch64.tar.gz](https://github.com/gojue/ecapture/releases/download/v0.7.3/ecapture-v0.7.3-android-aarch64.tar.gz). I want to know which one...
### Describe the issue ``` import axios from 'axios' async function my(config) { console.log(config) } const axios = axios.create({validateStatus:false, adapter:my}) console.log(await axios.postForm('https://httpbin.org/post', {1:2,buf:new Buffer.from('aaa')}).then(_ => _.data)) ``` the output is:...
### Basic info: - **Node.js version:** v21.2.0 - **jsdom version:** 23.0.1 ### Minimal reproduction case import jsdom from 'jsdom' const virtualConsole = new jsdom.VirtualConsole() const userAgent = await jsdom.JSDOM.fromURL('https://www.useragents.me', {virtualConsole}).then(_...
### Basic info: - **Node.js version:** v21.2.0 - **jsdom version:** "jsdom": "^23.0.1" ### Minimal reproduction case import jsdom from 'jsdom' const virtualConsole = new jsdom.VirtualConsole() const userAgent = await jsdom.JSDOM.fromURL('https://www.whatismybrowser.com/guides/the-latest-user-agent/chrome',...
import tls_client client = tls_client.Session() print(client.post('https://httpbin.org/post', json={'a':'b'}).json() {'args': {}, 'data': '{"a": "b"}', 'files': {}, 'form': {}, 'headers': {'Accept': '*/*', 'Accept-Encoding': 'gzip, deflate, br', 'Content-Length': '10', 'Content-Type': 'application/json', 'Host': 'httpbin.org', 'User-Agent':...
### Is your feature request related to a problem? Please describe. - I need to write my own adapter, i need to use formDataToStream to deal with multipart/form-data, but formDataToStream...