question

Upvotes
Accepted
1 1 1 0

Timed out waiting for TREP authentication response

Hi!


When we send reissue login request (with refresh = false) sometimes we received this message

Timed out waiting for TREP authentication response.


We send reissue login request every 0,8*expirationTime seconds. When we receive this message, what should we do? What is the reason for this?


Thanks!



elektron-sdkrdp-apirefinitiv-data-platform
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.

<AHS>

@Gurpreet., @Umer Nalla, @moragodkrit, this question has not received any response in a week. Could one of you provide a response, please? Thanks.

Moved to RDP

Thank you for your participation in the forum. Is the reply below satisfactory in resolving your query? If yes please click the 'Accept' text next to the reply. This will guide all community members who have a similar question. Otherwise please post again offering further insight into your question. Thanks, AHS

Please be informed that a reply has been verified as correct in answering the question, and has been marked as such. Thanks, AHS


Upvotes
Accepted
22.1k 59 14 21

Ok, since you posted it in the Elektron subgroup and mentioned TREP, it had us assuming the issue is with your local TREP and ESDK.

The Refresh tokens that you are using to renew Access Tokens are only valid for 18 hours. After this time, your application will have to use password grant to get a new set of Refresh and Access token. Can you confirm that you are doing this?

You can see when it is time to use Password grant when the expires_in time is less then what you would normally get.

                
  1. {
  2. "access-token": "<access_token>",
  3. "expires_in": "300",
  4. "token_type": "Bearer",
  5. "scope": "trapi",
  6. "refresh_token": "<refresh_token>"
  7. }
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.

Upvotes
22.1k 59 14 21

HI @cristian.gonzalez, Which API and language are you using. Is it the latest version of ESDK?

Is this issue reproducable with the samples, that are packaged with ESDK like: example430__MarketPrice__TrepAuthentication?

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.

Upvotes
1 1 1 0

Hi!

Own system is in Java. What do you means with "API"? We don't use de ESDK.

I don't know if this issue is reproducable. We have this issue every day once at least.

I will explain what we do.

We do POST to TREP.

auth/oauth2/beta1/token

With the response we open web socket session with this message.

ID = 1

domain = Login

key.elements.applicationId = 256

key.elements.authenticationToken = XXXX

key.nameType = AuthnToken.


When the login is success, every 0,8*expirationTime seconds we do

POST to

auth/oauth2/beta1/token

With

grant_type = refresh_token
refresh_token = XXXXX


And with the response, we get the new refresh token and then we send the reissue login request with the same body of login request but with


refresh = false


Sometimes after of we send the reissueLoginRequest we received this message.

{"ID":1,"Type":"Status","Domain":"Login","Key":{"Name":"xxxxxx"},"State":{"Stream":"Closed","Data":"Suspect","Code":"Timeout","Text":"TREP authentication token has expired."}}


And then the web socket connection closes.

Sorry for my english, I hope that you can understand.


Thanks!

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.