diff options
author | Thomas Lenz <thomas.lenz@egiz.gv.at> | 2014-02-03 16:58:39 +0100 |
---|---|---|
committer | Thomas Lenz <thomas.lenz@egiz.gv.at> | 2014-02-03 16:58:39 +0100 |
commit | 8aa98fd8b485673e041dbbbb8d8dedea72492146 (patch) | |
tree | 0a9b9ca199e61abe68418717df5bf8ad187fd193 /id/server/idserverlib/src/test/java | |
parent | 1f46df486fbab558fb3e935dfed160f26e698ac0 (diff) | |
download | moa-id-spss-8aa98fd8b485673e041dbbbb8d8dedea72492146.tar.gz moa-id-spss-8aa98fd8b485673e041dbbbb8d8dedea72492146.tar.bz2 moa-id-spss-8aa98fd8b485673e041dbbbb8d8dedea72492146.zip |
Bugfix Error handling
Diffstat (limited to 'id/server/idserverlib/src/test/java')
-rw-r--r-- | id/server/idserverlib/src/test/java/test/at/gv/egovernment/moa/id/auth/oauth/OAuth20ErrorsTests.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/id/server/idserverlib/src/test/java/test/at/gv/egovernment/moa/id/auth/oauth/OAuth20ErrorsTests.java b/id/server/idserverlib/src/test/java/test/at/gv/egovernment/moa/id/auth/oauth/OAuth20ErrorsTests.java index 9aede62e3..abfca4f36 100644 --- a/id/server/idserverlib/src/test/java/test/at/gv/egovernment/moa/id/auth/oauth/OAuth20ErrorsTests.java +++ b/id/server/idserverlib/src/test/java/test/at/gv/egovernment/moa/id/auth/oauth/OAuth20ErrorsTests.java @@ -28,11 +28,11 @@ public class OAuth20ErrorsTests { private static VerificationCodeReceiver receiver; // base uri - private static String OAUTH2_BASE_URI = "http://localhost:8080/moa-id-auth/dispatcher"; + private static String OAUTH2_BASE_URI = "https://localhost/moa-id-auth/"; // auth action - private static String OAUTH2_AUTH_URI = OAUTH2_BASE_URI + "?mod=id_oauth20&action=AUTH"; + private static String OAUTH2_AUTH_URI = OAUTH2_BASE_URI + "oauth2/auth"; // token action - private static String OAUTH2_TOKEN_URI = OAUTH2_BASE_URI + "?mod=id_oauth20&action=TOKEN"; + private static String OAUTH2_TOKEN_URI = OAUTH2_BASE_URI + "oauth2/token"; // client id private static String CLIENT_ID = "http://test"; |