Could not load file or assembly 'Newtonsoft.Json, Version=3.5.0.0

后端 未结 7 794
谎友^
谎友^ 2021-01-07 22:15

I am working in c# 4.0 to read a signed request I am using the following code

FacebookApp fap = new FacebookApp();
fap.AppId = \"789485219211963\"; // App ID         


        
相关标签:
7条回答
  • 2021-01-07 22:51

    Open the Package Manager Console and execute the following:

    update-package newtonsoft.json 
    

    This worked for me.

    0 讨论(0)
提交回复
热议问题