Skip to main content

Dictionary<string, string> obj = new Dictionary<string, string>(); obj.Add("refresh_token", CurrentUser.RCRefreshToken); obj.Add("grant_type", "refresh_token"); var request = new Request("/restapi/oauth/token/", obj); var responseToken = sdk.Platform.Post(request);

More information is appreciated. What is the programming language and what are the error messages? Thanks.
he is using c# to refresh token and getting error "Access Expired".
For C# language, please use https://github.com/ringcentral/ringcentral-csharp-client   Token will be auth refreshed: https://github.com/ringcentral/ringcentral-csharp-client#auto-refresh  If you want to manually refresh: https://github.com/ringcentral/ringcentral-csharp-client/blob/master/RingCentral.Test/AuthorizeTest....

Reply