#前提・実現したいこと
Google Apps ScriptでTwitterを検索を行い、
上位検索結果5件のツイートURLをスプレッドシートへ出力したいです。
類似の質問と思われる下記について参照の上、試行錯誤しているのですがうまくいかず、お力をお借りしたく。。。
・類似と思われる質問
https://teratail.com/questions/234557
(取得したい情報が異なる。類似例はtext、本質問の対象はurl)
tweet投稿はできておりますので、認証は問題ないかと考えております。
#発生している問題・エラーメッセージ
以下のメッセージが出力される。
"TypeError: Cannot read property 'urls' of undefined"
#ソースコード
function twitterSearch(){ var twitterService = getService(); var sheet = SpreadsheetApp.getActive().getSheetByName('AAA'); var json = twitterService.fetch("https://api.twitter.com/1.1/search/tweets.json?q=横浜FC"); var array = JSON.parse(json); sheet.getRange('B1').setValue(array.statuses.entities.urls.url); Logger.log(array); }
#試したこと
上記であげた類似例同様、ログ上は取得できているように見えますので、ここからurlのみを取り出そうと試みました。
Twitter Deveroper Search Tweets APIガイドページに記載の内容から、取得したいURLは以下の位置にあるように見えるのですが、
array.statuses.entities
array.statuses.entities.urls
array.statuses.entities.urls.url
など、arrayでいろいろ試してみてもうまく取得することができませんでした。
そもそも、上記のような指定方法がおかしいのでしょうか?
・Twitter Deveroper Search Tweets APIガイドページ
https://developer.twitter.com/en/docs/twitter-api/v1/tweets/search/api-reference/get-search-tweets
また、以下、一部となりますが出力されたログです。
"[20-09-24 01:01:00:704 JST] ログ出力のサイズが大きすぎます。出力を切捨てます。 {statuses=[{in_reply_to_user_id_str=null, in_reply_to_user_id=null, metadata={iso_language_code=ja, result_type=recent}, retweeted=false, retweeted_status={retweet_count=1646.0, coordinates=null, user={profile_banner_url=https://pbs.twimg.com/profile_banners/725265957866901505/1598312790, profile_sidebar_fill_color=000000, is_translator=false, notifications=false, description=ライブスポーツが一番観られるのは #DAZN????
⚽⚾????????????????????????⛳????????
Instagram▶️https://t.co/muoKqF900L
YouTube▶️https://t.co/U83Y8KVOJX
Facebook▶️https://t.co/qzfbkq5UFF, default_profile=false, id=7.252659578669015E17, profile_image_url_https=https://pbs.twimg.com/profile_images/1054021278405877760/ptFsV8Gp_normal.jpg, created_at=Wed Apr 27 10:10:53 +0000 2016, profile_use_background_image=false, default_profile_image=false, entities={description={urls=[{url=https://t.co/muoKqF900L, expanded_url=http://bit.ly/2GxCW8G, indices=[48.0, 71.0], display_url=bit.ly/2GxCW8G}, {expanded_url=http://goo.gl/VSLeyB, indices=[81.0, 104.0], url=https://t.co/U83Y8KVOJX, display_url=goo.gl/VSLeyB}, {expanded_url=http://bit.ly/2Cmz35l, indices=[115.0, 138.0], display_url=bit.ly/2Cmz35l, url=https://t.co/qzfbkq5UFF}]}, url={urls=[{indices=[0.0, 23.0], display_url=dazn.com, url=https://t.co/djDxFCXzkt, expanded_url=http://www.dazn.com/}]}}, favourites_count=3495.0, time_zone=null, lang=null, followers_count=435246.0, friends_count=2046.0, follow_request_sent=false, has_extended_profile=false, geo_enabled=true, protected=false, url=https://t.co/djDxFCXzkt, listed_count=1987.0, profile_sidebar_border_color=000000, profile_background_color=000000, id_str=725265957866901505, name=DAZN Japan, translator_type=none, following=false, profile_link_color=FAB81E, profile_background_image_url_https=https://abs.twimg.com/images/themes/theme1/bg.png,
"
あなたの回答
tips
プレビュー