summaryrefslogtreecommitdiffstats
path: root/python/doc/tutorial/sp-login-send-authn-request.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/doc/tutorial/sp-login-send-authn-request.py')
-rw-r--r--python/doc/tutorial/sp-login-send-authn-request.py29
1 files changed, 0 insertions, 29 deletions
diff --git a/python/doc/tutorial/sp-login-send-authn-request.py b/python/doc/tutorial/sp-login-send-authn-request.py
deleted file mode 100644
index 3d5ccefd..00000000
--- a/python/doc/tutorial/sp-login-send-authn-request.py
+++ /dev/null
@@ -1,29 +0,0 @@
-import lasso
-
-lasso.init()
-
-## Send an authentication request to identity provider.
-##
-## Called when the user press login button on service provider.
-
-server_dump = [...] # Load server_dump from file or database or...
-server = lasso.Server.new_from_dump(server_dump)
-login = lasso.Login.new(server)
-if login.init_authn_request('http://identification.entrouvert.org'):
- raise Exception('Login error')
-
-# Identity provider will ask user to authenticate himself.
-login.request.set_isPassive(False)
-
-# Identity provider will not ask user to authenticate himself if he has already done it recently.
-# login.request.set_forceAuthn(False)
-
-# Identity provider will create a federation with this service provider and this user, if this was
-# not already done.
-login.request.set_nameIDPolicy(lasso.libNameIDPolicyTypeFederated)
-
-if login.build_authn_request_msg():
- raise Exception('Login error')
-[...] # Reply a HTTP redirect to login.msg_url.
-
-lasso.shutdown()