Getting a sitecore api item using curl
You can authenticate yourself using curl with the following curl command :-
curl -X POST https://yourserver/sitecore/api/ssc/auth/login -c cookiefile -d "domain=sitecore&username=admin&password=mradmin"
When you are successfully authenticated, please try to request for the item using the following curl -
curl -b cookiefile curl -b cookiefile https://yourserver/sitecore/api/ssc/item/%7B95FD0E53-0466-49A6-BB24-F5D2FE996393%7D
Please note that you need to use HTTPS.
Comments