Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 3320872
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 17, 20262026-05-17T22:59:42+00:00 2026-05-17T22:59:42+00:00

I am trying to connect to my CouchDB database on Cloudant using Node.js. This

  • 0

I am trying to connect to my CouchDB database on Cloudant using Node.js.

This worked on the shell:

    curl https://weng:password@weng.cloudant.com/my_app/_all_docs

But this node.js code didn’t work:

    var couchdb = http.createClient(443, 'weng:password@weng.cloudant.com', true);
    var request = couchdb.request('GET', '/my_app/_all_docs', {
        'Host': 'weng.cloudant.com'
    });
    request.end();
    request.on('response', function (response) {
        response.on('data', function (data) {
            util.print(data);
        });
    });

It gave me this data back:

    {"error":"unauthorized","reason":"_reader access is required for this request"}

How do I do to list all my databases with Node.js?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-17T22:59:43+00:00Added an answer on May 17, 2026 at 10:59 pm

    The built-in Node.js http client is pretty low level, it doesn’t support HTTP Basic auth out of the box. The second argument to http.createClient is just a hostname. It doesn’t expect credentials in there.

    You have two options:

    1. Construct the HTTP Basic Authorization header yourself

    var Base64 = require('Base64');
    var couchdb = http.createClient(443, 'weng.cloudant.com', true);
    var request = couchdb.request('GET', '/my_app/_all_docs', {
        'Host': 'weng.cloudant.com',
        'Authorization': 'Basic ' + Base64.encode('weng:password')
    });
    request.end();
    request.on('response', function (response) {
        response.on('data', function (data) {
            util.print(data);
        });
    });
    

    You will need a Base64 lib such as one for node written in C, or a pure-JS one (e.g. the one that CouchDB Futon uses).

    2. Use a more high-level Node.js HTTP client

    A more featureful HTTP client, like Restler, will make it much easier to do the request above, including credentials:

    var restler = require('restler');
    restler.get('https://weng.cloudant.com:443/my_app/_all_docs', {
        username: 'weng',
        password: 'password'
    }).on('complete', function (data) {
        util.print(data);
    });
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am trying to connect to an Oracle Database using nHibernate. I can connect
While trying to connect to a database that's set to read only, the connection
I'm trying to connect to a remote database (hosted on Netfirms www.netfirms.ca if anyone
I'm trying to connect using several different clients to SQL Server 2005 standard, which
I am trying to connect the quantumsoftware winforms components ( http://www.quantumsoftware.com.au/Products/WindowsFormsComponents.aspx ) to my
I'm trying to connect to some host, using invalid port, and i want to
I am trying to connect to an IBM DB2 9 database on a Linux
When trying to connect to an ORACLE user via TOAD (Quest Software) or any
I am trying to connect to a Microsoft SQL 2005 server which is not
I am trying to connect to 2 databases on the same instance of MySQL

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.