Skip to content
This repository has been archived by the owner on Sep 12, 2019. It is now read-only.

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

Open
cdarrigo opened this issue Apr 30, 2014 · 1 comment

Comments

@cdarrigo
Copy link

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;
}
}

@maartenba
Copy link
Owner

Fixed

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants