I am using Open-Stack APIs to create a server/instance. I am using a rest client to do it. when I send a request to create a server the request executes successfully and returns me following response:
{
"server": {
"OS-DCF:diskConfig": "AUTO",
"adminPass": "CQH9gWzgkVno",
"id": "324dfb7d-f4a9-419a-9a19-237df04b443b",
"links": [
{
"href": "http://openstack.example.com/v2/openstack/servers/324dfb7d-f4a9-419a-9a19-237df04b443b",
"rel": "self"
},
{
"href": "http://openstack.example.com/openstack/servers/324dfb7d-f4a9-419a-9a19-237df04b443b",
"rel": "bookmark"
}
]
}
}
I don't know how to access the Server/Instance using the URL received in the JSON response. when the URL is clicked it says Unauthorised.
I don't have access to the OpenStack server or Horizon.
Please help!