前提・実現したいこと
エラーを解消したいです。
発生している問題・エラーメッセージ
「宣言またはステートメントが必要です。ts(1128)」
該当のソースコード
js
1// The Cloud Functions for Firebase SDK to create Cloud Functions and setup triggers. 2const functions = require('firebase-functions'); 3 4const Twitter = require('twitter'); 5 6exports.twitterPost = functions.https.onRequest(async (req, res) => { 7 const client = new Twitter({ 8 consumer_key:'', 9 consumer_secret: '', 10 access_token_key: '', 11 access_token_secret: '' 12 }) 13 const params = {status: 'ああああ'}; 14 client.post('statuses/update', params, function(error, tweets, response){ 15 if(error){ 16 console.log(error); 17 }); 18 } 19)};
試したこと
「宣言またはステートメントが必要です。ts(1128)」で検索しましたが有効な情報にたどり着けませんでした。
補足情報(FW/ツールのバージョンなど)
Firebase
Node.js
Twitter API
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。