1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/lib/fog/rackspace/requests/identity/create_token.rb

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