For a deeper look into our DataScope Select REST API, look into:

Overview |  Quickstart |  Documentation |  Downloads |  Tutorials

question

Upvotes
Accepted
5 1 1 4

DataScope.Select.Api.Extractions.ExtractionsContext reuse

We are using the DSS REST API with C# and sometimes we are receiving DataScope.Select.Api.TooManyRequestsException: Too many requests for throttling category "Authentication", user id "9007667". Approximately 408 requests were made in 300 seconds to 8 active server(s). lately . As suggested on some places, we are trying is to reuse the ExtractionsContext instance by sharing it across multiple threads. The threads are fetching data by calling methods like ValidateIdentifiers, ExtractWithNotes (EndOfDayPricingExtractionRequest, IntradayPricingExtractionRequest). Could you please tell me is this object is thread safe and can be used in this way or could you please provide some example of how the ExtractionsContext can be reused (could not find any concrete example of reusing in the Refinitiv DataScope Select - REST API .NET SDK)? Thanks!

datascope-select
icon clock
10 |1500

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

1 Answer

· Write an Answer
Upvotes
Accepted
32.2k 40 11 19

Hello @datateam2017 ,

It seems, from the error that you observe, you are running into Authentication requests throttle. Please see DataScope Select Best Practices & Fair Usage Polic, authentication requests are currently maxed at 30 requests per 300 seconds.

However, an authentication request results in a valid token that is good for 24 hours and the token can be reused for that time period.

DSS C# Example Application can be used as an example, please see Authorization Examples -> Sharing Tokens. After the token is obtained once, it is set into usersContext.SessionToken and accessed by the next extraction requests for the time that it is valid.

Hope this information helps

icon clock
10 |1500

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

Write an Answer

Hint: Notify or tag a user in this post by typing @username.

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.