blob: 2aec30499f4b00ac088fd82254726271186754e1 (
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
29
30
31
32
33
34
35
36
37
38
39
40
|
#ifndef _SKYPE_REQUEST_CONTACTS_H_
#define _SKYPE_REQUEST_CONTACTS_H_
class GetContactListRequest : public HttpRequest
{
public:
GetContactListRequest(const char *token) :
HttpRequest(REQUEST_GET, "api.skype.com/users/self/contacts?hideDetails=true")
{
flags |= NLHRF_SSL;
AddHeader("X-Skypetoken", token);
AddHeader("Accept", "application/json");
}
};
class GetContactsInfoRequest : public HttpRequest
{
public:
GetContactsInfoRequest(const char *token, const LIST<char> &skypenames) :
HttpRequest(REQUEST_POST, "api.skype.com/users/self/contacts/profiles")
{
flags |= NLHRF_SSL;
CMStringA data;
for (size_t i = 0; i < skypenames.getCount(); i++)
{
data.AppendFormat("contacts[]=%s&", skypenames[i]);
}
data.Delete(data.GetLength() - 1);
SetData(data, data.GetLength());
AddHeader("X-Skypetoken", token);
AddHeader("Accept", "application/json");
AddHeader("Content-Type", "application/x-www-form-urlencoded");
}
};
#endif //_SKYPE_REQUEST_CONTACTS_H_
|