mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
25 lines
534 B
Ruby
25 lines
534 B
Ruby
module Fog
|
|
module Rackspace
|
|
class Identity
|
|
class Real
|
|
def create_token(username, api_key)
|
|
data = {
|
|
'auth' => {
|
|
'RAX-KSKEY:apiKeyCredentials' => {
|
|
'username' => username,
|
|
'apiKey' => api_key
|
|
}
|
|
}
|
|
}
|
|
|
|
request(
|
|
:body => Fog::JSON.encode(data),
|
|
:expects => [200, 203],
|
|
:method => 'POST',
|
|
:path => 'tokens'
|
|
)
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|