Code Monkey home page Code Monkey logo

Comments (5)

floatdrop avatar floatdrop commented on April 28, 2024

@Jakobud auth option in http module computer should work for you.

Another question, should we parse out id and pass from url.


http module will break on this url too:

let res = require('http')
    .get('http://user:pa##[email protected]', function (){});

console.log(res._headers); // => 'GET /:pa HTTP/1.1\r\nHost: user\r\nConnection: close\r\n\r\n'

from got.

sindresorhus avatar sindresorhus commented on April 28, 2024

Passing Basic Auth in the URL is deprecated and not even possible anymore in Chrome and IE.

http://serverfault.com/questions/371907/can-you-pass-user-pass-for-http-basic-authentication-in-url-parameters

I think we should add a note now about using auth header instead and in the next major throw if user try to do that instead of using the header. @floatdrop Thoughts?

from got.

floatdrop avatar floatdrop commented on April 28, 2024

@Jakobud on second thought you can pass #, but you must use encodeURIComponent:

let res = require('http').get('http://user:' + encodeURIComponent('pa##word')+ '@google.com', function (){});

console.log(res._headers); // => GET / HTTP/1.1\r\nHost: google.com\r\nAuthorization: Basic dXNlcjpwYSMjd29yZA==\r\nConnection: close\r\n\r\n

@sindresorhus yes, username:password is deprecated by rfc3986, but this format is supported by Node url.parse method, so I don't see why we should explicitly forbid that.

from got.

sindresorhus avatar sindresorhus commented on April 28, 2024

yes, username:password is deprecated by rfc3986, but this format is supported by Node url.parse method, so I don't see why we should explicitly forbid that.

In contrast to Node, we can actually prevent its usage. Node has way too much baggage and dependence to do something like that. As for reasoning, it's deprecated and it would help users doing the right thing, and not end up with problems like this one. I see no downside doing this: #106

from got.

Jakobud avatar Jakobud commented on April 28, 2024

So if I don't use username:password in the url for a particular service, should that service automatically accept the Header authentication alternative?

Thanks for answering this one. It's kind of a weird one.

from got.

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.