预览在 MFP8.0 中无法正常工作

Preview not working properly in MFP8.0

我正在开发一个仅连接到 MFP 8.0 服务器的应用程序,但是当我 运行 使用 MFP 网络模拟器的应用程序时,日志显示 "getCachedAccessToken for scope failed: undefined" 。但是当我 运行 使用 emulator/device 的同一个应用程序时,它工作正常。

function wlCommonInit() {
    WLAuthorizationManager.obtainAccessToken().then(
        function () {       
            alert ("You are now connected to the server");
        },
        function(result) {
                    alert("Not able to connect: "+ JSON.stringify(result));
        }
    );
}

有什么方法可以在 MFP 网络模拟器中测试 MFP 服务器连接吗?

这是 8.0 版本的已知限制。
您可以在此处阅读更多相关信息:http://engtest01w.francelab.fr.ibm.com:9090/support/knowledgecenter/SSHS8R_8.0.0/com.ibm.worklight.dev.doc/wl_studio_tools/topics/cmbswl.html

令牌是 OAuth 流程的一部分。

作为解决方法,您可以使用模拟器。