A simple python client for the Icelandic government authentication service Íslykill (www.islykill.is)
Project description
A simple python client for the Icelandic government authentication service Íslykill (www.islykill.is)
You must apply for access before using this library.
Usage
=====
Just remember to set the `username`, `password` and `service_id` as your own.
`service_id` is the ID you are given from the national registry of Iceland (www.skra.is), e.g. for
www.betraisland.is the id is `betraisland.is` and the Íslykill authentication url is
`https://innskraning.island.is/?id=betraisland.is`
>>> import islykill
>>> islykill.username = "Your-username-here"
>>> islykill.password = "Your-password-here"
>>> islykill.service_id = "dev.roddfolksins.is"
>>> token = 'Some-received-token' # the token received from island.is
>>> ip_address = '1.1.1.1' # remote user ip address
>>> result = islykill.generate_saml_from_token(token, ip_address)
>>> print result
{'ssn': '1234567890', 'ip_address': '1.1.1.1', 'name': u'Jon Jonsson'}
If an error occurs, the result from `generate_saml_from_token` will return a dictionary with the
key "error" with the body of the error as value, e.g.
>>> print result
{'error': 'HTTPError = 500'}
500 usually mean that you can make the request again immediately, just a glitch in the
webservice.
>>> print result
{'error': 'Unable to find SAML assertion from token.'}
"Unable to find SAML assertion from token" means that the token is invalid or expired somehow,
which means the user has to authenticate again.
You must apply for access before using this library.
Usage
=====
Just remember to set the `username`, `password` and `service_id` as your own.
`service_id` is the ID you are given from the national registry of Iceland (www.skra.is), e.g. for
www.betraisland.is the id is `betraisland.is` and the Íslykill authentication url is
`https://innskraning.island.is/?id=betraisland.is`
>>> import islykill
>>> islykill.username = "Your-username-here"
>>> islykill.password = "Your-password-here"
>>> islykill.service_id = "dev.roddfolksins.is"
>>> token = 'Some-received-token' # the token received from island.is
>>> ip_address = '1.1.1.1' # remote user ip address
>>> result = islykill.generate_saml_from_token(token, ip_address)
>>> print result
{'ssn': '1234567890', 'ip_address': '1.1.1.1', 'name': u'Jon Jonsson'}
If an error occurs, the result from `generate_saml_from_token` will return a dictionary with the
key "error" with the body of the error as value, e.g.
>>> print result
{'error': 'HTTPError = 500'}
500 usually mean that you can make the request again immediately, just a glitch in the
webservice.
>>> print result
{'error': 'Unable to find SAML assertion from token.'}
"Unable to find SAML assertion from token" means that the token is invalid or expired somehow,
which means the user has to authenticate again.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
py-islykill-0.1.tar.gz
(5.1 kB
view details)
File details
Details for the file py-islykill-0.1.tar.gz
.
File metadata
- Download URL: py-islykill-0.1.tar.gz
- Upload date:
- Size: 5.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f976094d4b72e29183ae8b93e4f2fba2765cf09cfcf0dbf2018dbe4189526c39 |
|
MD5 | 75826c7abf20d637e74111470d92909d |
|
BLAKE2b-256 | f49591c28a284d9088523a0c0e2f6bb7df881d9face85819ad83eafbfcbed154 |