Gitlab Server не смог понять мой запрос PUR Curl, почему? - PullRequest
0 голосов
/ 02 октября 2019

Я сгенерировал Персональный токен из настроек gitlab, и теперь мое требование простое, с помощью команды ниже curl, я хочу обновить файл gitlab с именем input-gameinput.json, который находится в частном репозитории GitLab ниже

https://code.abc.cloud/lots/master/src/gatling/resources/data/input-gameinput.json

вот содержимое вышеприведенного репо

 [
   {
    "url": "https://api.url/Organizations/",
 "user":100,
 "testDuration":60,
 "rampDuration":5,
 "name": "Perf Test Org",
 "roundStart":"2019-04-15T20:22:23.409Z","roundEnd":"2019-04- 
  15T20:22:23.409Z","currentTime":"2019-04- 
   }
 ]


curl --request PUT --header "PRIVATE-TOKEN: SOMETOKEN"  --header "Content-Type: application/json"  --data '{ "ref":         "master", "variables": [ {"key": "user", "value": "50"}, {"key": "testDuration", "value": "60"} ] }'         " https://code.abc.cloud/lots/master/src/gatling/resources/data/input-gameinput.json"

я получаю ошибки в консоли

     C:\WINDOWS\system32>curl --request PUT --header "PRIVATE-TOKEN: 
    SOMETOKEN"  
    --header "Content-Type: application/json"      --data '{ "ref": 
    "master", 
    "variables": [ {"key": "user", "value": "50"}, {"key": "testDuration", 
    "value": "60"} ] }'

  https://code.abc.cloud/lots/master/src/gatling/resources/data/input-gameinput.json"
curl: (6) Could not resolve host: ref
curl: (6) Could not resolve host: master,
curl: (6) Could not resolve host: variables
curl: (3) [globbing] bad range specification in column 2
curl: (3) [globbing] unmatched brace in column 1
curl: (6) Could not resolve host: user,
curl: (6) Could not resolve host: value
curl: (3) [globbing] unmatched close brace/bracket in column 3
curl: (3) [globbing] unmatched brace in column 1
curl: (6) Could not resolve host: testDuration,
curl: (6) Could not resolve host: value
curl: (3) [globbing] unmatched close brace/bracket in column 3
curl: (3) [globbing] unmatched close brace/bracket in column 1
curl: (3) [globbing] unmatched close brace/bracket in column 1
curl: (6) Could not resolve host: code.abc.cloud

Я хочу отправить запрос curl для обновления файла репозитория gitlab https://code.abc.cloud/lots/master/src/gatling/resources/data/input-gameinput.json,how я делаю это? Пожалуйста, помогите?

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...