環境
Windows10
node.js v12.18.3
npm v6.14.6
使用パッケージ
Twitter for Node.js
https://www.npmjs.com/package/twitter
前提・実現したいこと
node.jsでTwitterAPIのアプリケーションを作るために
statuses/updateメソッドを使用し、ツイートを行おうとしていますが以下のエラーメッセージが出ます。
様々な方法を立てましたが、手詰まり状態なのでご教示ください。
発生している問題・エラーメッセージ
(node:35524) UnhandledPromiseRejectionWarning: Error: HTTP Error: 401 Authorization Required at Request._callback (ディレクトリ省略\TwitterAPI\node_modules\twitter\lib\twitter.js:177:25) at Request.self.callback (ディレクトリ省略\TwitterAPI\node_modules\request\request.js:185:22) at Request.emit (events.js:315:20) at Request.<anonymous> (ディレクトリ省略\TwitterAPI\node_modules\request\request.js:1154:10) at Request.emit (events.js:315:20) at IncomingMessage.<anonymous> (ディレクトリ省略\TwitterAPI\node_modules\request\request.js:1076:12) at Object.onceWrapper (events.js:421:28) at IncomingMessage.emit (events.js:327:22) at endReadableNT (_stream_readable.js:1220:12) at processTicksAndRejections (internal/process/task_queues.js:84:21) (node:35524) 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(). To terminate the node process on unhandled promise rejection, use the CLI flag `--unhandled-rejections=strict` (see https://nodejs.org/api/cli.html#cli_unhandled_rejections_mode). (rejection id: 1) (node:35524) [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.
該当のソースコード
var Twitter = require('twitter'); var client = new Twitter({ consumer_key: '省略', consumer_secret: '省略', access_token_key: '省略', access_token_secret: '省略' }); client.post('statuses/update', {status: 'I Love Twitter'}) .then(function (tweet) { console.log(tweet); }) .catch(function (error) { throw error; })
試したこと
※1~4全て試しても上記のエラーが出ます。
401エラー=認証エラーと仮定して...
1,認証キーはあっているか?
→環境変数を使用せずにベタ貼りをしたが×
2,アプリの設定画面のCallbackURLは入力されているか?
→ダミーURLを入れているが×
Callback URLs
http://localhost:3000/
WEBSITE URL
https://developer.twitter.com/en/portal
3,コンピュータの時刻が狂っていないか?
→PCの時刻同期設定を行ったが×
4,プロジェクトを削除し、新しいプロジェクトを作成
→×
##補足
favorites/listメソッドを試しましたが取得できました。
あなたの回答
tips
プレビュー