aboutsummaryrefslogtreecommitdiff
path: root/restapi
diff options
context:
space:
mode:
authorJulien Dessaux2019-08-04 11:33:58 +0200
committerJulien Dessaux2019-08-05 13:28:55 +0200
commit2d542a79796fb4568871c4a634ce4d3b311ffd9d (patch)
treed62ebaf77d35308df420e930de07389810b2abc4 /restapi
parentAdded http lib and basic restapi with rocket_close_im binary (diff)
downloadrocket-cli-client-2d542a79796fb4568871c4a634ce4d3b311ffd9d.tar.gz
rocket-cli-client-2d542a79796fb4568871c4a634ce4d3b311ffd9d.tar.bz2
rocket-cli-client-2d542a79796fb4568871c4a634ce4d3b311ffd9d.zip
Fixed curl call orders
Diffstat (limited to 'restapi')
-rw-r--r--restapi/auth.c1
-rw-r--r--restapi/im.c1
2 files changed, 1 insertions, 1 deletions
diff --git a/restapi/auth.c b/restapi/auth.c
index e3f1b74..ad13798 100644
--- a/restapi/auth.c
+++ b/restapi/auth.c
@@ -60,6 +60,7 @@ restapi_login(const char* username, const char* password)
printf("userid: %s\nauthtoken: %s\n", userId->valuestring, authToken->valuestring);
http_add_header("X-User-Id", userId->valuestring);
http_add_header("X-Auth-Token", authToken->valuestring);
+ http_add_header("Content-type", "application/json");
} else {
const cJSON* msg = cJSON_GetObjectItemCaseSensitive(json, "message");
if (cJSON_IsString(msg) && msg->valuestring != NULL)
diff --git a/restapi/im.c b/restapi/im.c
index 6b9f75c..0c49cb0 100644
--- a/restapi/im.c
+++ b/restapi/im.c
@@ -22,7 +22,6 @@ restapi_im_close(const char* username)
strcpy(login_args, LOGIN_ARG_PRE);
strcpy(login_args + pre_len, username);
strcpy(login_args + pre_len + user_len, LOGIN_ARG_POST);
- http_add_header("Content-type", "application/json");
const char* buffer = http_post("/api/v1/im.close", login_args);
free(login_args);