looking to pull data from LSEG workspace application into VS code for the development of downstream generic/parametrized, user-driven ingestion using the following code to establish connection,
session = rd.session.platform.Definition(
app_key="YOUR_APP_KEY",
grant="password", # or "client_credentials" for service accounts
username="YOUR_USERNAME", # required for "password" grant
password="YOUR_PASSWORD",
take_signon_control=True
)
rd.open_session(session)
We attempted to establish connection using the info below yesterday, but not successful. Can you please advise if and how
- we can perhaps request client credentials using service accounts to establish such connection between LSEG workspace application & VS code?
- we can perhaps request such info (app_key, username & password) from an alternative source such as the Refinitiv Developer portal?