389 Stimmen

Die Ausgabe von cURL im Unix-Shell-Skript im lesbaren JSON-Format anzeigen

In meinem Unix-Shell-Skript, wenn ich einen Curl-Befehl ausführe, wird das Ergebnis wie unten angezeigt, das ich in eine Datei umleite:

{"type":"Show","id":"123","title":"name","description":"Funny","channelTitle":"ifood.tv","lastUpdateTimestamp":"2014-04-20T20:34:59","numOfVideos":"15"}

Aber ich möchte dieses Ausgabe im lesbaren JSON-Format wie unten in der Datei platzieren:

{"type":"Show",
"id":"123",
"title":"name",
"description":"Funny",
"channelTitle":"ifood.tv",
"lastUpdateTimestamp":"2014-04-20T20:34:59",
"numOfVideos":"15"}

Wie kann ich die Ausgabe auf diese Weise formatieren?

3voto

ifrag Punkte 141

In real cases sometimes you need use -i option in curl to get headers

$ curl https://petstore.swagger.io/v2/pet/1 -i
HTTP/2 200 
date: Wed, 26 Jul 2023 16:46:39 GMT
content-type: application/json
access-control-allow-origin: *
access-control-allow-methods: GET, POST, DELETE, PUT
access-control-allow-headers: Content-Type, api_key, Authorization
server: Jetty(9.2.9.v20150224)

{"id":1,"category":{"id":0,"name":"zbyszek"},"name":"pies","photoUrls":["string"],"tags":[{"id":0,"name":"pies"}],"status":"available"}

in that case, pure jq/json_pp/json_reformat will fail:

curl https://petstore.swagger.io/v2/pet/1 -i | jq
  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed
100   138    0   138    0     0    108      0 --:--:--  0:00:01 --:--:--   109
parse error: Invalid numeric literal at line 1, column 7

I offer to use ijq https://github.com/1frag/ijq that ignores non-json lines

curl https://petstore.swagger.io/v2/pet/1 -i | ijq
  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed
100    51    0    51    0     0     41      0 --:--:--  0:00:01 --:--:--    41
HTTP/2 404 
date: Wed, 26 Jul 2023 16:51:58 GMT
content-type: application/json
access-control-allow-origin: *
access-control-allow-methods: GET, POST, DELETE, PUT
access-control-allow-headers: Content-Type, api_key, Authorization
server: Jetty(9.2.9.v20150224)
{
    "code": 1,
    "message": "Pet not found",
    "type": "error"
}

2voto

Reino Punkte 2366

Mit xidel:

curl <...> | xidel - -se '$json'

xidel kann wahrscheinlich auch das JSON für Sie abrufen.

0voto

Do Nhu Vy Punkte 38281

Installieren

$ sudo apt install python3-pip
$ sudo pip install curljson

dann verwenden, beispiel:

$ curljson -i localhost:9080/actuator/health ; echo
HTTP/1.1 200
Content-Type: application/vnd.spring-boot.actuator.v3+json
Transfer-Encoding: chunked
Date: Fri, 15 Sep 2023 10:28:55 GMT

{
    "status": "UP"
}

Getestet mit Ubuntu 22.04 LTS.

0voto

Gene Punkte 1

Wenn Sie das Terminal von Mac verwenden, ist jq bereits integriert und Sie müssen nichts installieren. Fügen Sie einfach | jq Ihrem CURL-Befehl hinzu und Sie erhalten das formatierte JSON. Ein Beispiel: Wenn Sie Folgendes ausführen:

curl http://time.jsontest.com/ | jq

werden Sie Folgendes erhalten:

  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed
100   100  100   100    0     0    388      0 --:--:-- --:--:-- --:--:--   389
{
  "date": "12-28-2023",
  "milliseconds_since_epoch": 1703738250474,
  "time": "04:37:30 AM"
}

CodeJaeger.com

CodeJaeger ist eine Gemeinschaft für Programmierer, die täglich Hilfe erhalten..
Wir haben viele Inhalte, und Sie können auch Ihre eigenen Fragen stellen oder die Fragen anderer Leute lösen.

Powered by:

X