You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ngcp-panel/tools/ngcp-api-get

15 lines
251 B

#!/bin/sh
usage () {
echo "Usage: $0 <url>";
exit;
}
URL="$1"
test -z "$URL" && usage;
test -z "$APIUSER" && APIUSER="administrator:administrator"
HEADERS="-H 'Connection: close'"
curl -i -X GET "$HEADERS" --user "$APIUSER" --insecure "$URL"