2020-12-23 11:50:30 +01:00
|
|
|
#!/bin/bash
|
2021-12-21 22:37:19 +01:00
|
|
|
export BEARER_TOKEN=$(cat token)
|
2020-12-23 11:50:30 +01:00
|
|
|
curl -s -X GET -H "Authorization: Bearer $BEARER_TOKEN" \
|
2021-12-21 22:48:21 +01:00
|
|
|
"https://api.twitter.com/2/tweets/search/recent?query=%23rC3cwtv&tweet.fields=created_at&expansions=author_id,attachments.media_keys&media.fields=preview_image_url&user.fields=profile_image_url" > public/tweets-rc3.json
|