feedbin / feedbin-api

Feedbin API Documentation
349 stars 26 forks source link

Error when making request #39

Open dericksozo opened 5 years ago

dericksozo commented 5 years ago

Hey there team, I'm running into SSL error when making a request, either to api.feedbin.com or feedbin.com. Anything I can do about this?

(node:361) UnhandledPromiseRejectionWarning: Error: write EPROTO 140230432048960:error:14077410:SSL routines:SSL23_GET_SERVER_HELLO:sslv3 alert handshake failure:../deps/openssl/openssl/ssl/s23_clnt.c:802:

    at WriteWrap.afterWrite [as oncomplete] (net.js:868:14)
(node:361) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1)
(node:361) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code.

Thank you and hoping to hear back, Derick

benubois commented 5 years ago

Hi @dericksozo,

Feedbin does not support SSLv3 because it's not secure. Is this node? I think you either need to update node, openssl and/or try the disabling SSLv3 as described in this Stack Overflow answer.

Thanks!

dericksozo commented 5 years ago

Hey @benubois thank you for the prompt response! I'll try this and get back. 😄

dericksozo commented 5 years ago

I'll go ahead and update this comment in case anyone else is running into this issue.

First, if you're running your own Node.js server then yes use @benubois link to Stack Overflow above. In my case though, I'm using Glitch.com, and I can't disable SSLv3. I'm getting around it by using Zapier to make the request to the Feedbin API directly.

Thank you for all your hard work @benubois and Feedbin Team.

Have a good day, Derick