Unable to verify assembly data; you must provide an authorization key when loading this assembly

前端 未结 3 642
春和景丽
春和景丽 2020-12-18 18:44

I\'m testing the InteractiveConsole example in Unity. I did some configurations as described in the official tutorial. After some setups I got on step 7: Run our example

3条回答
  •  不知归路
    2020-12-18 19:31

    Instead of change the call to LoadAndVerifyAssembly as @BrianJew suggests, you simply can change the line 381 of FB.cs, where it says

    #if UNITY_4_5
    

    you should put

    #if UNITY_4_5 || UNITY_4_6
    

    Or the appropiate flag for your Unity's version. In that block the key is obtained from this URL https://integrated-plugin-canvas-rsrc.fbsbx.com/rsrc/unity/key/sdk_5.1/AuthToken.unityhash

提交回复
热议问题