You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Sep 12, 2019. It is now read-only.
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;
}
}
The text was updated successfully, but these errors were encountered:
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;
}
}
The text was updated successfully, but these errors were encountered: