Socialmetrica/Datanalitica.package/TwitterAPI.class/instance/userEndPointFor.selecting..st

7 lines
534 B
Smalltalk
Raw Normal View History

2021-07-26 12:46:45 +00:00
accessing
userEndPointFor: username selecting: tweetsOrMentions
"I build a shared URL for querying last 100 mentions or tweets for a particular user.
Second parameter should be only 'tweets' or 'mentions', dateString, if present, should be YYYY-MM-DD."
2021-07-26 12:46:45 +00:00
| commonQueryParameters |
2021-08-18 22:00:15 +00:00
commonQueryParameters := '?expansions=author_id&tweet.fields=conversation_id,created_at&user.fields=username,name,profile_image_url&max_results=100'.
2021-07-26 12:46:45 +00:00
^ self usersBaseEndPoint, (self userIDFrom: username), '/', tweetsOrMentions, commonQueryParameters