Advertisement
Guest User

Untitled

a guest
Feb 27th, 2015
213
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.44 KB | None | 0 0
  1. Making authentication request to http://vs203.rch.kstart.ibm.com:5000/v3/auth/tokens
  2. body: {'auth': {'identity': {'token': {'id': {'token': {'methods': ['saml2'], 'expires_at': '2015-02-28T17:53:37.352074Z', 'extras': {}, 'user': {'OS-FEDERATION': {'identity_provider': {'id': 'Wisconsin'}, 'protocol': {'id': 'saml2'}, 'groups': [{'id': 'd2aa9c2f56a34542afa16efadebfa960'}]}, 'id': 'admin', 'name': 'admin'}, 'audit_ids': ['_XS0Pp3VSEKheHgzrhR76A'], 'issued_at': '2015-02-27T17:53:37.352118Z'}}}, 'methods': ['token']}}}
  3. headers: {'Accept': 'application/json', 'X-Auth-Token': {'token': {'methods': ['saml2'], 'expires_at': '2015-02-28T17:53:37.352074Z', 'extras': {}, 'user': {'OS-FEDERATION': {'identity_provider': {'id': 'Wisconsin'}, 'protocol': {'id': 'saml2'}, 'groups': [{'id': 'd2aa9c2f56a34542afa16efadebfa960'}]}, 'id': 'admin', 'name': 'admin'}, 'audit_ids': ['_XS0Pp3VSEKheHgzrhR76A'], 'issued_at': '2015-02-27T17:53:37.352118Z'}}}
  4.  
  5. "python-keystoneclient/keystoneclient/auth/identity/v3.py"
  6.  
  7. 125 _logger.debug('Making authentication request to %s', token_url)$
  8. 126 print('Making authentication request to %s' % token_url)$
  9. 127 print('body: %s' % body) $
  10. 128 print('headers: %s' % headers) $
  11. 129 $
  12. 130 resp = session.post(token_url, json=body, headers=headers,$
  13. 131 authenticated=False, log=False, **rkwargs)$
  14. 132 print(resp)$
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement