diff options
| author | Brent Shaffer <bshafs@gmail.com> | 2014-06-12 21:32:10 +0400 |
|---|---|---|
| committer | Brent Shaffer <bshafs@gmail.com> | 2014-06-12 21:32:10 +0400 |
| commit | a7f02c9b7b4a18e54a71f93436aa4a6091f399a7 (patch) | |
| tree | b75564eaec9a5456c717af283df6003017e69a0e /test/config/storage.json | |
| parent | 95e731e0855b8156a161b93dc3f1909a8dd98abe (diff) | |
| parent | 15132d13735b40b96c929dee5fa79863e3cd01c7 (diff) | |
| download | oauth2-server-php-1.4.tar.xz | |
Merge pull request #392 from bshaffer/developv1.4
Tag 1.4
Diffstat (limited to 'test/config/storage.json')
| -rw-r--r-- | test/config/storage.json | 22 |
1 files changed, 21 insertions, 1 deletions
diff --git a/test/config/storage.json b/test/config/storage.json index a5470fb..82a7924 100644 --- a/test/config/storage.json +++ b/test/config/storage.json @@ -4,7 +4,8 @@ "client_id": "Test Client ID", "user_id": "", "redirect_uri": "", - "expires": "9999999999" + "expires": "9999999999", + "id_token": "IDTOKEN" }, "testcode-with-scope": { "client_id": "Test Client ID", @@ -24,6 +25,13 @@ "user_id": "", "redirect_uri": "", "expires": "9999999999" + }, + "testcode-openid": { + "client_id": "Test Client ID", + "user_id": "", + "redirect_uri": "", + "expires": "9999999999", + "id_token": "test_id_token" } }, "client_credentials" : { @@ -68,6 +76,11 @@ "testusername": { "password": "testpass" }, + "testuser": { + "password": "password", + "email": "testuser@test.com", + "email_verified": true + }, "johndoe": { "password": "password" } @@ -101,6 +114,13 @@ "expires": 99999999900, "scope": "testscope" }, + "accesstoken-openid-connect": { + "access_token": "accesstoken-openid-connect", + "client_id": "Test Client ID", + "user_id": "testuser", + "expires": 99999999900, + "scope": "openid email" + }, "accesstoken-malformed": { "access_token": "accesstoken-mallformed", "expires": 99999999900, |
