diff options
author | aunsane <aunsane@gmail.com> | 2017-04-25 23:14:48 +0300 |
---|---|---|
committer | aunsane <aunsane@gmail.com> | 2017-04-26 00:02:28 +0300 |
commit | f6575a156251f15ca2c1b9d8042aa45fb62bf42a (patch) | |
tree | e666979a4eeb36266dce7f3b66494490684dae07 /plugins/CloudFile/src/Services/microsoft_api.h | |
parent | 8331fa1e2a38cb64ac3c97e0e8bfdd11d2c08b85 (diff) |
CloudFile: ability to disable services
Diffstat (limited to 'plugins/CloudFile/src/Services/microsoft_api.h')
-rw-r--r-- | plugins/CloudFile/src/Services/microsoft_api.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/CloudFile/src/Services/microsoft_api.h b/plugins/CloudFile/src/Services/microsoft_api.h index b7f6ebd073..0717a7a00a 100644 --- a/plugins/CloudFile/src/Services/microsoft_api.h +++ b/plugins/CloudFile/src/Services/microsoft_api.h @@ -31,8 +31,8 @@ namespace OneDriveAPI AddHeader("Content-Type", "application/x-www-form-urlencoded"); CMStringA data(CMStringDataFormat::FORMAT, - "client_id=%s&client_secret=%s&grant_type=refresh_token&refresh_token=%s", - MS_APP_ID, MS_CLIENT_SECRET, refreshToken); + "client_id=%s&grant_type=refresh_token&refresh_token=%s", + MS_APP_ID, refreshToken); SetData(data.GetBuffer(), data.GetLength()); } }; |