From 6cc83675b3ef96279f2a3abac6de0d4efeaee9e3 Mon Sep 17 00:00:00 2001 From: Guillaume Damiens <guillaume.damiens@etu.utc.fr> Date: Thu, 25 Apr 2019 12:43:21 +0200 Subject: [PATCH] Authentification ok --- pica-wekan/policy.sh | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/pica-wekan/policy.sh b/pica-wekan/policy.sh index a9b00f3d..98e38850 100755 --- a/pica-wekan/policy.sh +++ b/pica-wekan/policy.sh @@ -1,15 +1,12 @@ #!/bin/bash -. ids.sh +. ids.sh # contient $username et $password pour authentification queryPica=$(curl -s https://wekan.test.picasoft.net/users/login -d 'username='"$username"'&password='"$password"'') -token=$(echo $queryPica | jq .token) -expirationDate=$(echo $queryPica | jq .tokenExpires) - -echo $token - +token=$(echo $queryPica | jq -r .token) +expirationDate=$(echo $queryPica | jq -r .tokenExpires) curl -X GET https://wekan.test.picasoft.net/api/boards \ -H 'Accept: application/json' \ - -H 'Authorization: '"$token"'' + -H 'Authorization: Bearer '"$token"'' -- GitLab