Git Product home page Git Product logo

Comments (4)

alexindigo avatar alexindigo commented on July 20, 2024

Thank you, good catch. :)
Let me sleep on it.

from form-data.

alexindigo avatar alexindigo commented on July 20, 2024

Now (#22) you can specify custom parameters for form.submit() with auth or any other parameter supported by http.request() or https.request()
Please refer to the Readme for example.

Thank you.

from form-data.

azylman avatar azylman commented on July 20, 2024

Custom parameters are cool, but I don't think your commit fixes the initial bug I reported - just adds a workaround.

If you pass in just a url to form submit, with the basic auth encoded in the url (e.g. http://username:[email protected]/path), you're still throwing away the field returned from urlParse. This is on line 251 (https://github.com/alexindigo/node-form-data/blob/4581140f322758c6fc92019d342c7d7d6c94af5c/lib/form_data.js#L251)

so form.submit('http://username:[email protected]/path') would still not work but, as a workaround, you could do form.submit({host: 'host.com', path: '/path', auth: 'username:password', protocol: 'http:'})

I think a simple fix is just changing line 251 to instead be options = populate(params, defaults) and then you're not throwing away params.auth

from form-data.

alexindigo avatar alexindigo commented on July 20, 2024

I don't want to screw up implementations that already out in the wild,
so to be on a safe side we'll keep original 'simple' interface intact,
and for everything else not so mainstream we'll have extended interface.

By the way, http is default protocol, so you can safely omit it.

form.submit({host: 'host.com', path: '/path', auth: 'username:password'})

And you can do something like that:

form.submit(parseUrl('http://username:[email protected]/path'))

Although former example looks more appealing to my taste.

from form-data.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.