openstacknetsdk / openstack.net

An OpenStack Cloud SDK for Microsoft .NET
http://www.openstacknetsdk.org
Other
117 stars 101 forks source link

Add domain authorization scope #621

Open bblrlo opened 8 years ago

bblrlo commented 8 years ago

Add domain authorization scope as discribed in http://developer.openstack.org/api-ref-identity-v3.html#authenticatePasswordScoped

bblrlo commented 8 years ago

json request must be like this: { "auth": { "identity": { "methods": [ "password" ], "password": { "user": { "domain": { "name": "domain-name" }, "name": "usr", "password": "pwd" } } }, "scope": { "project": { "domain": { "name": "domain-name" }, "name": "prj-name" } } } }

carolynvs commented 8 years ago

Looks like this is specific to identity v3, which is on our roadmap but isn't implemented yet. When that is tackled, I'll make sure this is included.