/// <summary> /// List all of the moments that your app has written for the authenticated user /// </summary> /// <param name="UserId"></param> /// <param name="access"></param> /// <returns></returns> public JArray GetMomentList(string UserId, string access) { Moments objMoment = new Moments(_clientId, _clientSecret, _redirectUrl); try { objArr = objMoment.Get_Moment_List(UserId, access); } catch (Exception Err) { Console.Write(Err.StackTrace); } return(objArr); }