diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2012-04-01 15:36:22 -0700 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2012-04-01 15:36:22 -0700 |
commit | 0c8a4a3a33e840e7c449388f078155efaf1854c7 (patch) | |
tree | a2737354658f5bb6699197e615e84182a48a6f0d /src/DotNetOpenAuth.OAuth2.ResourceServer/OAuth2/OAuth2Strings.resx | |
parent | 4fcf484a281697630698c12f81fdcf7306346366 (diff) | |
download | DotNetOpenAuth-0c8a4a3a33e840e7c449388f078155efaf1854c7.zip DotNetOpenAuth-0c8a4a3a33e840e7c449388f078155efaf1854c7.tar.gz DotNetOpenAuth-0c8a4a3a33e840e7c449388f078155efaf1854c7.tar.bz2 |
AccessToken is now a public class.
Resource Servers can now handle access tokens that are issued for a client's data (not a 3rd party resource owner's).
Client Identifiers are no longer included in access tokens for unauthenticated clients.
More work needed on IAccessTokenAnalyzer and the access token formatter. We need to generalize the serialization itself so folks can use JWT, etc.
We also still need access token to have a host-defined map of claims.
Fixes #104
Fixes #102
Diffstat (limited to 'src/DotNetOpenAuth.OAuth2.ResourceServer/OAuth2/OAuth2Strings.resx')
-rw-r--r-- | src/DotNetOpenAuth.OAuth2.ResourceServer/OAuth2/OAuth2Strings.resx | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/DotNetOpenAuth.OAuth2.ResourceServer/OAuth2/OAuth2Strings.resx b/src/DotNetOpenAuth.OAuth2.ResourceServer/OAuth2/OAuth2Strings.resx index 175a386..46943c4 100644 --- a/src/DotNetOpenAuth.OAuth2.ResourceServer/OAuth2/OAuth2Strings.resx +++ b/src/DotNetOpenAuth.OAuth2.ResourceServer/OAuth2/OAuth2Strings.resx @@ -117,10 +117,16 @@ <resheader name="writer"> <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> </resheader> + <data name="ClientIdentifierLooksLikeResourceOwnerName" xml:space="preserve"> + <value>Client Identifier starts with a resource owner prefix. Authorization aborted.</value> + </data> <data name="InvalidAccessToken" xml:space="preserve"> <value>Invalid access token.</value> </data> <data name="MissingAccessToken" xml:space="preserve"> <value>Missing access token.</value> </data> + <data name="ResourceOwnerNameLooksLikeClientIdentifier" xml:space="preserve"> + <value>Resource owner username starts with a client prefix. Authorization aborted.</value> + </data> </root>
\ No newline at end of file |