Hi @SocialOpinions. Have you tried running this as a cURL?
Copy the following request into your command line after making the appropriate adjustments to the following:
-
Environment name e.g. Prod
-
Bearer Token e.g. AAAAAAAAAAAA0%2EUifi76ZC9Ub0wn...
-
fromDate and toDate e.g. fromDate":"201403040000"
curl --request POST \
--url https://api.twitter.com/1.1/tweets/search/fullarchive/{ENVIRONMENT_NAME}.json \
--header 'authorization: Bearer {BEARER_TOKEN}' \
--header 'content-type: application/json' \
--data '{
"query":"from:jamie_maguire1",
"maxResults": "500",
"fromDate":"{YYYYMMDDHHmm}",
"toDate":"{YYYYMMDDHHmm}"
}'