1
0
mirror of https://github.com/bitwarden/directory-connector synced 2025-12-16 00:04:34 +00:00

correct client id on refresh

This commit is contained in:
Kyle Spearrin
2017-08-15 13:18:44 -04:00
parent 305a66d64d
commit 9803a55ca3

View File

@@ -181,7 +181,7 @@ namespace Bit.Core.Services
new Dictionary<string, string> new Dictionary<string, string>
{ {
{ "grant_type", "refresh_token" }, { "grant_type", "refresh_token" },
{ "client_id", "mobile" }, { "client_id", "connector" },
{ "refresh_token", TokenService.Instance.RefreshToken } { "refresh_token", TokenService.Instance.RefreshToken }
}) })
}; };