Libellés

lundi 3 janvier 2011

Client Web-Service REST avec Curl (HTTPS + Authentification Basic)

Voici un script shell qui permet de se connecter sur un serveur web
- en HTTPS avec un certificat auto-signé,
- avec une authentification basic
- fonctionnant en REST, méthode HTTP : PUT
- en UTF-8

#!/bin/sh

curl --insecure --basic -u login:password -i -X PUT -H "Content-Type: application/json; charset=utf-8" d '{"jsonKey":"value"}' https://localhost:8443/webservice-resource

1 commentaire: