前提・実現したいこと
GAS(Google Apps Script)からライブラリを使用せずにTwitterAPIv1.1を利用したく、以下の記事を参考にスクリプトを作成しましたが、認証エラーが出ます。
https://a01sa01to.com/blog/2021/06/gas-twitter
ライブラリを利用せずにAPIを利用したい理由は、すでにアプリの認証が完了しており、アクセストークンをGASのプロパティ(環境変数のようなもの)から読み込んで使用したいからです。既存のライブラリではそのような使い方はできないようです。
発生している問題・エラーメッセージ
{"errors":[{"code":32,"message":"Could not authenticate you."}]}
該当のソースコード
gs
1function createParams(obj, separator) { 2 let params = ""; 3 for (const key in obj) { 4 if (Object.prototype.hasOwnProperty.call(obj, key)) { 5 // "&key=value" を params に追加 6 params += separator + encodeURIComponent(key) + "=" + encodeURIComponent(obj[key]); 7 } 8 } 9 // 先頭の "&" が不要なので、取り除いたものを返す 10 return params.substring(1); 11} 12 13function tweet() { 14 const status = 'test'; 15 // ----- 設定 ----- // 16 const apiKey = PropertiesService.getScriptProperties().getProperty("CONSUMER_API_KEY"); 17 const apiSec = PropertiesService.getScriptProperties().getProperty("CONSUMER_API_SECRET"); 18 const accessToken = PropertiesService.getScriptProperties().getProperty("ACCESS_TOKEN"); 19 const accessSecret = PropertiesService.getScriptProperties().getProperty("ACCESS_TOKEN_SECRET"); 20 const reqUrl = "https://api.twitter.com/1.1/statuses/update.json"; // APIのリソースURL 21 // 現在の時刻を取得 22 const now = new Date(); 23 const param = { 24 oauth_consumer_key: apiKey, 25 oauth_token: accessToken, 26 status: status, 27 oauth_nonce: Math.random().toString(32).substring(2), // ランダムな文字列を得る 28 oauth_signature_method: "HMAC-SHA1", 29 oauth_timestamp: Math.floor(now.getTime() / 1000).toString(), // エポック秒 30 oauth_version: "1.0", 31 } 32 // HMAC-SHA1方式のハッシュ値に変換 33 const hash = Utilities.computeHmacSignature( 34 Utilities.MacAlgorithm.HMAC_SHA_1, 35 encodeURIComponent('POST') + "&" + encodeURIComponent(reqUrl) + "&" + encodeURIComponent(createParams(param, "&")), 36 encodeURIComponent(apiSec) + "&" + encodeURIComponent(accessSecret) 37 ) 38 // ハッシュをbase64エンコードすると署名になる 39 const sign = Utilities.base64Encode(hash) 40 param["oauth_signature"] = sign 41 const header = { 42 authorization: `OAuth ${createParams(param, ",")}` 43 } 44 const option = { 45 method: "POST", 46 headers: header, 47 payload: { status: status }, 48 muteHttpExceptions: true 49 } 50 // APIを叩く 51 const res = UrlFetchApp.fetch(reqUrl, option) 52 // 結果を出力する 53 Logger.log(res.getResponseCode()) 54 Logger.log(res.getAllHeaders()) 55 Logger.log(res.getContentText()) 56}
試したこと
ライブラリを利用してAPIを利用すると、正常に動作しました。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。