We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
from today The OAuth getOAuthRequestTokenmethod is not working anymore and I recieve the following error:
getOAuthRequestToken
code:'SELF_SIGNED_CERT_IN_CHAIN' message:'self signed certificate in certificate chain'
I used this mothod like this:
consumer = new oauth.OAuth( "https://api.twitter.com/oauth/request_token", "https://api.twitter.com/oauth/access_token", twitter.consumer_key, twitter.consumer_secret, "1.0A", twitterCallBackUrl, // twitterCallBackUrl, "HMAC-SHA1" ); consumer.getOAuthRequestToken(function (error, oauthToken, oauthTokenSecret, results) { if (error) { // here occurs the error >>> SELF_SIGNED_CERT_IN_CHAIN res.send("Error getting OAuth request token : " + inspect(error)); } else { // get request token }
Do you have any suggestions to solve this issue?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
from today The OAuth
getOAuthRequestToken
method is not working anymore and I recieve the following error:I used this mothod like this:
Do you have any suggestions to solve this issue?
The text was updated successfully, but these errors were encountered: