blob: c45c94c1ed98f6f2444535490688227cd4bfe7cf (
plain)
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
|
#ifndef _SKYPE_REQUEST_AVATAR_H_
#define _SKYPE_REQUEST_AVATAR_H_
class GetAvatarRequest : public HttpRequest
{
public:
GetAvatarRequest(const char *url) : HttpRequest(REQUEST_GET, url)
{
flags |= NLHRF_REDIRECT;
}
};
class SetAvatarRequest : public HttpRequest
{
public:
SetAvatarRequest(const char *token, const char *skypename, const char *data) :
HttpRequest(REQUEST_PUT, FORMAT, "api.skype.com/users/%s/profile/avatar", skypename)
{
Headers
<< CHAR_VALUE("X-Skypetoken", token)
<< CHAR_VALUE("Content-Type", "image/jpg");
Body << VALUE(data);
}
};
#endif //_SKYPE_REQUEST_AVATAR_H_
|