APIのレスポンスで取得したJSONデータをJSON.parseした後にオブジェクトで取り出す際に
キーが各データに割り振られたキーなのでオブジェクト.プロパティで取り出せないので、mapを使おうと思ったのですがうまくいかないのでご教授お願いします。
JavaScript
1 2const responseArray = JSON.parse(response); 3 const text = responseArray.globalObjects.tweets; 4 Logger.log(text) 5 6
上記ですとレスポンスが
{ 1334188214630936576={ entities={ urls=[ { display_url=twitter.com/i/events/13341…, indices=[46, 69], expanded_url=https://twitter.com/i/events/1334173643862020098, url=https://t.co/3CQLE1kSQX}] }, user_id_str=3896350692, id_str=1334188214630936576, created_at=Wed Dec 02 17:30:33 +0000 2020, favorite_count=144, text=2021年6月頃まで延長する方針を固めたということです https://t.co/3CQLE1kSQX, source=<a href=“https://about.twitter.com/products/tweetdeck” rel=“nofollow”>TweetDeck</a>, possibly_sensitive_editable=true, lang=ja, retweet_count=207, conversation_id_str=1334188214630936576},
となるのですが、このような場合でtextを取り出したいのですが、mapをどのようにしたらいいのか分からないのでご教授お願いします。