It work well but the validity of a token is only 20 minutes. I read somewhere that a refresh token is always valid. It will be much better for me. Can I use a url with the refresh_token instead of token. And if yes, can you give me the exact form please ?
You use your refresh_token in an HTTP POST request to get a new access_token.
Below is a sample Postman request on how to use the refresh_token. The request is very similar to the one used to exchange a code for an access_token, just with a different body.
Thanks for your response. But that’s not my question …
I already have the refresh_token. Postman gives me the token and the refresh_token.
My question is : can i use the refresh_token in a url ?
For example, I have already try : https://esi.tech.ccp.is/latest/characters/<char_no>/assets/?&refresh_token=<ref_token>
but it does not work.