PouchDB.sync - >获取https://myaccount.cloudant.com/?_nonce = 123 ... 403(禁止)

时间:2015-02-12 08:42:47

标签: pouchdb cloudant

我尝试使用Pouch 3.3.0使用以下代码同步到Cloudant:

  var url = 'https://username:password@myaccount.cloudant.com/mydb';

        var sync = PouchDB.sync('mydb', url, {live: true})
          .on('change', function (info) {
            alert(info);
          }).on('denied', function (info) {
            alert(info);
          }).on('complete', function (info) {
            alert(info);
          }).on('error', function (err) {
            alert(err);
          });

但是,我在控制台日志窗口中收到以下错误:

GET https://myaccount.cloudant.com/?_nonce=1423729415820 403 (Forbidden)

我已经看到了与此相关的一些问题(例如#1646),但我不清楚解决问题需要做些什么。

0 个答案:

没有答案