diff options
author | George Hazan <george.hazan@gmail.com> | 2023-06-14 17:04:02 +0300 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2023-06-14 17:04:02 +0300 |
commit | 4a07d904cb59d4d9d494df34096d0ecac6d0cf76 (patch) | |
tree | cd62714fb9921a2fa1d44723c5e9ecbc73f1ea44 /protocols/Steam/src/api/app_info.h | |
parent | 0189e27fd98ad9a8ba9aacd1c5f715e56129167e (diff) |
Steam: first working SendRequest()
Diffstat (limited to 'protocols/Steam/src/api/app_info.h')
-rw-r--r-- | protocols/Steam/src/api/app_info.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/Steam/src/api/app_info.h b/protocols/Steam/src/api/app_info.h index b4c2618249..d2ef0df532 100644 --- a/protocols/Steam/src/api/app_info.h +++ b/protocols/Steam/src/api/app_info.h @@ -5,7 +5,7 @@ class GetAppInfoRequest : public HttpRequest { public: GetAppInfoRequest(const char *token, const char *appIds) : - HttpRequest(REQUEST_GET, STEAM_API_URL "/ISteamGameOAuth/GetAppInfo/v0001") + HttpRequest(REQUEST_GET, "/ISteamGameOAuth/GetAppInfo/v0001") { this << CHAR_PARAM("access_token", token) << CHAR_PARAM("appIds", appIds); } |