Hi team, i was trying to use refinitiv.dataplatform to get news data using below code.
import refinitiv.dataplatform as rdp
rdp.open_platform_session(
'appkey',
rdp.GrantPassword(
username = 'id',
password = 'pwd*'
)
)
html_story = rdp.get_news_story('urn:newsml:reuters.com:20230714:nL8N390167:3')
But in html_story, i was only able to fetch story body, without the info from raw data in api playground, like topic codes, sentiment and others, shown in pic below. Which function should I use to get those data, or am I using the correct api? Thanks in advance for answering.