Hi,
I am integrating my application with Box using .Net SDK. I have upgraded the BOX.V2 to 3.18.0.
I am following the documentation in the start guide.
[Route("return")]
public async Task<IActionResult> Return(){
var code = Request.Query["code"];
this.BoxAuthenicatedSession = await
this._boxClient.Auth.AuthenticateAsync(code);
var client = new BoxClient(this._boxConfig, this.BoxAuthenicatedSession);
// PERFORM API ACTIONS WITH CLIENT
}
this is the code that is written over there..
I am able to fetch the code. while getting authenticatedsession, my code is returning an exception that object reference is not set to an instance of object.
Please help me to solve this issue.