Syntax error urlObject.auth() Method in Node.js

urlObject.auth() Method in Node.js



The auth() property defines the username and password portion of any URL, also called as userInfo. The string and username are separated by a colon ( : ).

Syntax

urlOject.auth()

Parameters

Since it retuns only the username and password from a URL, it does not required any input parameters.

Example

Create a file with name – auth.js and copy the below code snippet. After creating file, use the following command to run this code as shown in the example below −

node auth.js

auth.js

 Live Demo

// Importing the URL module
const url = require('url');

var adr = 'https://username=hello:password=tutorialspoint@www.tutorialspoint.com/';

// Parsing the above URL address
var q = url.parse(adr, true);

// Printing the auth details
console.log(q.auth);

Output

C:\home
ode>> node auth.js username=hello:password=tutorialspoint

Example

Let's take a look at one more example.

 Live Demo

// Importing the URL module
const url = require('url');

var adr = 'http://username=admin:password=tutorialspoint123@www.tutorialspoint.com/';

// Parsing the above URL address
var q = url.parse(adr, true);

// Printing the auth details
console.log(q.auth);

Output

C:\home
ode>> node auth.js username=admin:password=tutorialspoint123
Updated on: 2021-05-20T13:29:12+05:30

132 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements