/// <summary> /// Record a moment representing a user's activity such as making a purchase or commenting on a blog /// </summary> /// <param name="UserId"></param> /// <param name="access"></param> /// <returns></returns> public JArray PostInsertMoment(string UserId, string access) { Moments objMoment = new Moments(_clientId, _clientSecret, _redirectUrl); try { objArr = objMoment.Post_Insert_Moment(UserId, access); } catch (Exception Err) { Console.Write(Err.StackTrace); } return(objArr); }