Last active
July 12, 2020 20:51
-
-
Save foxwill/a5543c7e57a363479cd9621db4410974 to your computer and use it in GitHub Desktop.
Create a user in the OneLogin OAUTH Api
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import onelogin | |
# specify client_id, client_secret, and shard (us or eu) | |
creds = {'client_id':'', | |
'client_secret':'', | |
'shard':'US'} | |
token = onelogin.Token(**creds) | |
# Create the user object with the token created | |
user = onelogin.User(token) | |
# define the user, or build the user object from a csv file, | |
# To create a user you must include the firstname, lastname, email, and username | |
# attribute. | |
new_user = { | |
'firstname':'Foo', | |
'lastname':'Bar', | |
'email':'foobarfoobar@foobarz123.local', | |
'username':'foobar12321' | |
} | |
# Search to see if the user exists based on email, if not, create a new user | |
if user.user_exists(new_user['email']): | |
found_user = user.get_user_by_id( | |
user.search_users( | |
'email',new_user['email'])[0]['data'][0]['id'] | |
) | |
print "Can not create user, already exists \r\n {0}".format(found_user) | |
else: | |
Foo = user.create_user(**new_user) | |
user_id = Foo['data'][0]['id'] | |
print 'Created User: {0}'.format(new_user) | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment