Cotten
Cotten

Reputation: 9077

Cloudant support of https://user:[email protected]

I'm new to CouchDB but like I read here, it looks like CouchDB supports:

http://user:[email protected]:5984

But when trying this at Cloudant:

curl https://myuser:[email protected]/animalsdb/kangaroo

I keep getting html for a 404 - Page not found. Is this not supported?

Upvotes: 1

Views: 70

Answers (1)

Kim Stebel
Kim Stebel

Reputation: 42047

You are not using the right host name. This should work:

curl https://myuser:[email protected]/animalsdb/kangaroo

Upvotes: 3

Related Questions