aboutsummaryrefslogtreecommitdiff
path: root/restapi/auth.c
diff options
context:
space:
mode:
Diffstat (limited to 'restapi/auth.c')
-rw-r--r--restapi/auth.c1
1 files changed, 1 insertions, 0 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)