Facebook SDK for .NET - Security Warning Issue

前端 未结 5 1581
南旧
南旧 2020-12-20 10:35

everyone. Today I encounter the following message in my Windows Phone App:

Success
SECURITY WARNING: Please treat the URL above as you would y

5条回答
  •  轮回少年
    2020-12-20 10:56

    Had the same problem. In my app I changed this line:
    parameters["redirect_uri"] = "https://www.facebook.com/connect/login_success.html";
    To this line:
    parameters["redirect_uri"] = "https://m.facebook.com/connect/login_success.html";
    And it works now.

提交回复
热议问题