blob: b08a3f38d6745ed74e12bfc9221d670bf3fd9890 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#ifndef _STEAM_REQUEST_APP_INFO_H_
#define _STEAM_REQUEST_APP_INFO_H_
class GetAppInfoRequest : public HttpRequest
{
public:
GetAppInfoRequest(const char *token, const char *appIds) :
HttpRequest(HttpGet, STEAM_API_URL "/ISteamGameOAuth/GetAppInfo/v0001")
{
Uri
<< CHAR_PARAM("access_token", token)
<< CHAR_PARAM("appIds", appIds);
}
};
#endif //_STEAM_REQUEST_APP_INFO_H_
|