On Thu, Feb 23, 2012 at 11:23 PM, Paras pradhan <pradhanpa...@gmail.com> wrote:
> Now I have keystone configured at http://192.168.122.14:5000/v2.0  how
> to use curl in this case to get a token?

Example from devstack:
    TOKEN=`curl -s -d  "{\"auth\":{\"passwordCredentials\":
{\"username\": \"$ADMIN_USER\", \"password\": \"$ADMIN_PASSWORD\"},
\"tenantName\": \"$ADMIN_TENANT\"}}" -H "Content-type:
application/json" http://$HOST_IP:5000/v2.0/tokens | python -c "import
sys; import json; tok = json.loads(sys.stdin.read()); print
tok['access']['token']['id'];"`

_______________________________________________
Mailing list: https://launchpad.net/~openstack
Post to     : openstack@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack
More help   : https://help.launchpad.net/ListHelp

Reply via email to