WindowsAzure.Acs.Oauth2 icon indicating copy to clipboard operation
WindowsAzure.Acs.Oauth2 copied to clipboard

Error in Client - Three Legged Auth dies when there is no refresh token.

Open cdarrigo opened this issue 10 years ago • 1 comments

WHen the refresh token is null (which is true when implementing a client using threelegged client mode), the following exception is thrown ArgumentNullException

from here

public string Code { get { return base.Parameters["code"]; } set { if (string.IsNullOrEmpty(value)) { throw new ArgumentNullException("value"); } base.Parameters["code"] = value; } }

cdarrigo avatar Apr 30 '14 14:04 cdarrigo

Fixed

maartenba avatar May 03 '14 14:05 maartenba