[Cyberduck-trac] [Cyberduck] #8813: Support for authentication with Keystone v3 API

Cyberduck trac at trac.cyberduck.io
Wed Dec 16 12:28:59 UTC 2015


#8813: Support for authentication with Keystone v3 API
-------------------------+-------------------------
 Reporter:  bill_az      |         Owner:  dkocher
     Type:  enhancement  |        Status:  reopened
 Priority:  normal       |     Milestone:  4.8
Component:  openstack    |       Version:  4.7
 Severity:  normal       |    Resolution:
 Keywords:  OpenStack    |  Architecture:
 Platform:               |
-------------------------+-------------------------

Comment (by dkocher):

 We have been sending requests with a domain identified by `id` instead of
 `name`.


 {{{
 {
     "auth": {
         "identity": {
             "methods": [
                 "password"
             ],
             "password": {
                 "user": {
                     "domain": {
                         "id": "cyberduck.io"
                     },
                     "name": "cyberduck",
                     "password": "-----------------"
                 }
             }
         },
         "scope": {
             "project": {
                 "domain": {
                     "id": "cyberduck.io"
                 },
                 "name": "Production"
             }
         }
     }
 }
 }}}

 should instead be


 {{{
 {
     "auth": {
         "identity": {
             "methods": [
                 "password"
             ],
             "password": {
                 "user": {
                     "domain": {
                         "name": "cyberduck.io"
                     },
                     "name": "cyberduck",
                     "password": "-----------------"
                 }
             }
         },
         "scope": {
             "project": {
                 "domain": {
                     "name": "cyberduck.io"
                 },
                 "name": "Production"
             }
         }
     }
 }
 }}}

-- 
Ticket URL: <https://trac.cyberduck.io/ticket/8813#comment:42>
Cyberduck <https://cyberduck.io>
Libre FTP, SFTP, WebDAV, S3 & OpenStack Swift browser for Mac and Windows


More information about the Cyberduck-trac mailing list