wunderline icon indicating copy to clipboard operation
wunderline copied to clipboard

UNABLE_TO_GET_ISSUER_CERT_LOCALLY

Open rootid opened this issue 6 years ago • 4 comments

Installed wunderline

  • npm install wunderline

Run auth w/ new app (entered client id and access token)

  1. NODE_DEBUG=request wunderline auth
REQUEST { method: 'get',
  json: true,
  baseUrl: 'https://a.wunderlist.com/api/v1',
  headers:
   { 'X-Access-Token':
      'XXXXX',
     'X-Client-ID': 'XXXX' },
  uri: '/lists',
  callback: [Function] }
REQUEST make request https://a.wunderlist.com/api/v1/lists
REQUEST response body undefined
{
  "code": "UNABLE_TO_GET_ISSUER_CERT_LOCALLY"
}

rootid avatar Apr 22 '19 22:04 rootid

Do you have a (ssl intercepting) proxy set? The CA certificate of that proxy is probably missing your system trust store.

Thor77 avatar Apr 23 '19 07:04 Thor77

Is there way I can set the proxy eg. any commands?

rootid avatar Apr 23 '19 10:04 rootid

You probably don't want to set a proxy but find out if there's one active on your current system/network to find out why wunderlist is reporting this error.

Thor77 avatar Apr 23 '19 11:04 Thor77

Thanks @Thor77

rootid avatar Apr 23 '19 21:04 rootid