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/search.h | |
parent | 0189e27fd98ad9a8ba9aacd1c5f715e56129167e (diff) |
Steam: first working SendRequest()
Diffstat (limited to 'protocols/Steam/src/api/search.h')
-rw-r--r-- | protocols/Steam/src/api/search.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/Steam/src/api/search.h b/protocols/Steam/src/api/search.h index fd3c8a66f0..d72d140dc5 100644 --- a/protocols/Steam/src/api/search.h +++ b/protocols/Steam/src/api/search.h @@ -5,7 +5,7 @@ class SearchRequest : public HttpRequest {
public:
SearchRequest(const char *token, const char *text, int offset = 0, int count = 30) :
- HttpRequest(REQUEST_GET, STEAM_API_URL "/ISteamUserOAuth/Search/v0001")
+ HttpRequest(REQUEST_GET, "/ISteamUserOAuth/Search/v0001")
{
this
<< CHAR_PARAM("access_token", token)
|