我正在开发一个需要集成 Vidyo 的 ColdFusion 站点。我还没有找到基于 ColdFusion 的解决方案,但我找到了 Python 版本。但是,我在尝试调用 Python 文件以生成 Vidyo 会话的令牌时遇到问题。我收到以下错误:
调用外部进程时发生异常。这个异常的原因是:java.io.IOException: Cannot run program "C:\Inetpub\vhosts\sitename\httpdocs\site.com\generateToken.py": CreateProcess error=193, %1 is not a valid Win32应用。
错误发生在第 9 行。
这是生成错误的代码:
<cffunction name="generateToken" access="public" returntype="string" output="false">
<cfargument name="userName" required="true" type="string">
<cfexecute name = "C:\Inetpub\vhosts\sitename\httpdocs\site.com\generateToken.py"
arguments="--key=3907f8fa000d4ae08e3a2a0507986d45 --appID=d85f88.vidyo.io --userName=#userName# --expiresInSecs=10000"
variable="token"
errorVariable="errorOut"
timeout = "1">
</cfexecute>
<cfreturn token>
</cffunction>
我以前从未与 Python 集成过,因此将不胜感激。此外,如果有人知道与 Vidyo 的纯 ColdFusion 集成,我愿意改变我的方向。