diff options
author | Nicolas Clapies <nclapies@entrouvert.com> | 2004-07-21 12:44:33 +0000 |
---|---|---|
committer | Nicolas Clapies <nclapies@entrouvert.com> | 2004-07-21 12:44:33 +0000 |
commit | 1d7b3791454b797bfd8d5dc72600b6932a16552d (patch) | |
tree | 4081f2bb056518fbe6974c9df7f68ba8e7cb7041 /python/examples/logout-from-idp.py | |
parent | ddf6dd5516e6dbf778968c7fd97ba094c115d36b (diff) | |
download | lasso-1d7b3791454b797bfd8d5dc72600b6932a16552d.tar.gz lasso-1d7b3791454b797bfd8d5dc72600b6932a16552d.tar.xz lasso-1d7b3791454b797bfd8d5dc72600b6932a16552d.zip |
add list of identity provider id in user environ
Diffstat (limited to 'python/examples/logout-from-idp.py')
-rw-r--r-- | python/examples/logout-from-idp.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/python/examples/logout-from-idp.py b/python/examples/logout-from-idp.py index 3732cc0e..38266d44 100644 --- a/python/examples/logout-from-idp.py +++ b/python/examples/logout-from-idp.py @@ -32,7 +32,7 @@ print user.dump() # requests : logout = lasso.Logout.new(server, user, lasso.providerTypeIdp); -next_provider_id = user.get_next_providerID(); +next_provider_id = user.get_next_assertion_remote_providerID(); while(next_provider_id): assertion = user.get_assertion(next_provider_id) @@ -44,7 +44,7 @@ while(next_provider_id): print 'body : ', logout.msg_body user.remove_assertion(next_provider_id) - next_provider_id = user.get_next_providerID() + next_provider_id = user.get_next_assertion_remote_providerID() print "End of logout ..." print "Dump of user environ :" |