First post, hopefully I am asking in a comprehensible manner.
I have been asked to build a calendar application which will source the company's Twitter posts, which is using the Calendar template screen. I hope to eventually be able to apply this to LinkedIn posts.
In the template, the dropdown ComboBox uses a this function to source the user's Office365 calendar events:
ClearCollect( MyCalendarEvents, 'Office365'.GetEventsCalendarViewV2( _myCalendar.Name, Text( _minDate, UTC ), Text( _maxDate, UTC ) ).value );
The GetCalendarEvents function allows for a calendar and a range of dates to be picked. How can I adapt this line of code to choose Tweets instead of Office365 events?
If there's any more details I can provide please let me know.