Transloadit无法在c#.net中获得ASSEMBLY_COMPLETED响应

时间:2015-02-19 07:45:57

标签: c# transloadit

参考下面的链接

https://github.com/nkranitz/transloadit-csharp-sdk 我使用transloadit进行视频转换并将其保存在C#中的s3中。我能够上传视频和图像,并能够获得空结果的响应。我的回答是“ok”:“ASSEMBLY_EXECUTING”,消息和结果标记为空。因此,一旦执行程序集就像ASSEMBLY_COMPLETED一样,我没有得到最终响应。所以,我看到有一些属性assembly.setblocking = true ..但在C#中属性不可用。那么如何才能得到最终的响应,或者我如何在c#.net

中使用阻塞属性

请帮助我解决这个问题。

提前致谢。

以下是代码段

ITransloadit transloadit = new Transloadit.Transloadit(“APIKEY”,“Secret”);

        //Create assembly builder to build up the assembly
        IAssemblyBuilder assembly = new AssemblyBuilder();
        //Add a file to be uploaded (with autogenerated key)
        assembly.AddFile(@"filepath"); 

       //Define the step, you can define more in the same assembly
        IStep step = new Step();
        step.SetOption("robot", "/image/resize");
        step.SetOption("width", 75);
        step.SetOption("height", 75);
        step.SetOption("resize_strategy", "pad");
        step.SetOption("background", "#000000");

        //Add the step to the assembly
        assembly.AddStep("thumb", step);

        //Set notification URL
        assembly.SetNotifyURL("url");

        //Set the expiration date time of the request for the assembly
        //Assembly will be expired in 120 minutes from now
        assembly.SetAuthExpires(DateTime.Now.AddMinutes(120));
        //Invoke assembly, and wait for the result
        TransloaditResponse response = transloadit.InvokeAssembly(assembly);

        if (response.Success)
        {
          //  LoggerFactory.GetLogger().LogInfo(Type.GetType("TestConsole.Program"), "Assembly {0} result", response.Data);
        }

1 个答案:

答案 0 :(得分:0)

在第一个回复中,您应该看到assembly_url。您可以/应该每隔 X 秒轮询该URL以获取更新。当程序集到达ASSEMBLY_CANCELED ASSEMBLY_COMPLETED REQUEST_ABORTEDerror已设置时,它已完成。我不确定此轮询的样板是否在SDK中实现,您必须检查。

建议不要阻塞组件,因为它们需要保持连接打开,这样会更脆弱。