diff options
author | Azul <azul@leap.se> | 2012-12-08 16:05:40 +0100 |
---|---|---|
committer | Azul <azul@leap.se> | 2012-12-08 16:05:40 +0100 |
commit | 0f36c7931fe04bb3d6a3fd70a25fe1090f48e774 (patch) | |
tree | 705212a30f1487787abc8ccf345bc6e0566416e2 /users/test/integration/api/python | |
parent | 8282b83c798ba4e5c1e26ec8243b82669b3ee6d4 (diff) |
serve api version 1 in /1/
Just a very simple start for now.
Do we want to use the api for the secure remote password auth from js?
Diffstat (limited to 'users/test/integration/api/python')
-rwxr-xr-x | users/test/integration/api/python/flow_with_srp.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/users/test/integration/api/python/flow_with_srp.py b/users/test/integration/api/python/flow_with_srp.py index b599252..f28aeda 100755 --- a/users/test/integration/api/python/flow_with_srp.py +++ b/users/test/integration/api/python/flow_with_srp.py @@ -16,7 +16,7 @@ def id_generator(size=6, chars=string.ascii_uppercase + string.digits): return ''.join(random.choice(chars) for x in range(size)) # using globals for a start -server = 'http://springbok.leap.se/1/' +server = 'http://localhost:3000/1' login = id_generator() password = id_generator() + id_generator() |