summaryrefslogtreecommitdiff
path: root/protocols/SkypeWeb/src/requests/reg_info.h
diff options
context:
space:
mode:
authorAlexander Lantsev <aunsane@gmail.com>2015-03-23 18:04:59 +0000
committerAlexander Lantsev <aunsane@gmail.com>2015-03-23 18:04:59 +0000
commitceb5a959c77bbfdb5f5054d6d694032aa323f674 (patch)
tree2a9bedb244201053be39ffbce6fbd86be87e1469 /protocols/SkypeWeb/src/requests/reg_info.h
parent4c42f50401b69f7ba0c87ea5d315173f0c9a8fcf (diff)
SkypeWeb: status support pt2 (patch from MikalaiR)
git-svn-id: http://svn.miranda-ng.org/main/trunk@12487 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/SkypeWeb/src/requests/reg_info.h')
-rw-r--r--protocols/SkypeWeb/src/requests/reg_info.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/protocols/SkypeWeb/src/requests/reg_info.h b/protocols/SkypeWeb/src/requests/reg_info.h
index 6ba0518524..888ce987b0 100644
--- a/protocols/SkypeWeb/src/requests/reg_info.h
+++ b/protocols/SkypeWeb/src/requests/reg_info.h
@@ -7,10 +7,12 @@ public:
GetRegInfoRequest(const char *token) :
HttpsPostRequest("client-s.gateway.messenger.live.com/v1/users/ME/endpoints")
{
- Headers
+ CMStringA auth = "skypetoken=";
+ auth += token;
+ Headers
<< CHAR_VALUE("Accept", "application/json, text/javascript")
<< CHAR_VALUE("Expires", "0")
- << FORMAT_VALUE("Authentication", "skypetoken=%s", token)
+ << CHAR_VALUE("Authentication", auth)
<< CHAR_VALUE("Content-Type", "application/json; charset = UTF-8")
<< CHAR_VALUE("Referer", "https://web.skype.com/main")
<< CHAR_VALUE("Origin", "https://web.skype.com")