| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
 | #ifndef _STEAM_REQUEST_SESSION_H_
#define _STEAM_REQUEST_SESSION_H_
class GetSessionRequest : public HttpRequest
{
public:
	GetSessionRequest(const char *token, const char *steamId, const char *cookie) :
		HttpRequest(HttpPost, STEAM_WEB_URL "/mobileloginsucceeded")
	{
		flags = NLHRF_HTTP11 | NLHRF_SSL | NLHRF_NODUMP;
		Content = new FormUrlEncodedContent(this)
			<< CHAR_PARAM("oauth_token", token)
			<< CHAR_PARAM("steamid", steamId)
			<< CHAR_PARAM("webcookie", cookie);
		char data[512];
		mir_snprintf(data, _countof(data),
			"oauth_token=%s&steamid=%s&webcookie=%s",
			token,
			steamId,
			cookie);
	}
};
class GetSessionRequest2 : public HttpRequest
{
public:
	GetSessionRequest2(const char *token, const char *steamId) :
		HttpRequest(HttpGet, STEAM_WEB_URL "/mobilesettings/GetManifest/v0001")
	{
		flags = NLHRF_HTTP11 | NLHRF_SSL | NLHRF_NODUMPHEADERS;
		char cookie[MAX_PATH];
		mir_snprintf(cookie, "steamLogin=%s||oauth:%s", steamId, token);
		Headers << CHAR_PARAM("Cookie", cookie);
	}
};
#endif //_STEAM_REQUEST_SESSION_H_
 |