summaryrefslogtreecommitdiff
path: root/protocols/SkypeWeb/src/requests/profile.h
blob: 579ac446b4bc18ea6bb71c342beca0dc4e4e45f7 (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 HttpsGetRequest
{
public:
	GetProfileRequest(const char *token, const char *skypename = "self") :
		HttpsGetRequest("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_