I have a .Net server with .Net SDK tokbox sdk.
I need to know when archiving has been uploaded to my AWS S3 bucket, and in order to do that I need to receive JSON callback url.
Being my url https://company.com/home/archivingvideo I am trying, on HomeController.cs
[HttpPost]
[AllowAnonymous]
public ActionResult ArchivingVideo(String param)
{
[HttpPost]
[AllowAnonymous]
public ActionResult ArchivingVideo(Object param)
{
[HttpPost]
[AllowAnonymous]
public ActionResult ArchivingVideo(Newtonsoft.Json.Linq.JObject param)
{
String function receives null parameter. Object function receives {} paramenter. Newtonsoft.Json.Linq.JObject is not called
Do you know which type should I try to get callback information? I have tried sending me a JSON file with POSTMAN and I receive a String.
Thanks