blob: e7d7a4b68264d605a947bc73eb5761584b97f23e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#ifndef _SKYPE_REQUEST_PROFILE_H_
#define _SKYPE_REQUEST_PROFILE_H_
class GetProfileRequest : public HttpRequest
{
public:
GetProfileRequest(const char *token, const char *skypename = "self") :
HttpRequest(REQUEST_GET, FORMAT, "api.skype.com/users/%s/profile", skypename)
{
Headers
<< CHAR_VALUE("X-Skypetoken", token)
<< CHAR_VALUE("Accept", "application/json");
//AddHeader("Origin", "https://web.skype.com");
//AddHeader("Referer", "https://web.skype.com/main");
}
};
#endif //_SKYPE_REQUEST_PROFILE_H_
|