If we are using SharePoint app model AutoHosted Environment we need to use Client Context model to access SharePoint. Therefore First you need to get a Valid Access Token from SharePoint Server. For that you need to pass the SharePoint Site Url (This is available as SPHostUrl in the Query String) and Context Token that we can generate from passing the request Object . TokenHelper Class provides methods that used can be used to access the SharePoint server and generate Access Tokens. 1. Get the Context Token by passing the HttpRequest String context = TokenHelper .GetContextTokenFromRequest(Request); 2.Then get the Uri from the query string which provides the path to SharePoint server. Uri SharePointUri = new Uri (Request.QueryString[ "SPHostUrl" ]); 3. Then validate and generate access Token SharePointContextToken contextToken = TokenHelper .ReadAndValidateContextToken(context, SharePointUri.Authority); String AcessToken = TokenHelper .GetAccessToken(contextToken, shar...