如何在本地主机上为 Facebook 应用程序发出连接请求
How to do a connect request for the Facebook App in localhost
我正在为我目前在 locahost 中的应用程序创建一个使用 facebook 身份验证的登录。我在 facebook 中创建了一个应用程序。
现在,当我尝试访问此 URL 时:https://www.facebook.com/dialog/oauth?client_id=my_app_id&redirect_uri=http://localhost:8080/
我收到此错误:
Given URL is not permitted by the application configuration.: One or more of the given URLs is not allowed by the App's settings. It must match the Website URL or Canvas URL, or the domain must be a subdomain of one of the App's domains.
然后我尝试将 localhost
添加到我的应用程序设置 App Domains
并且我在那里遇到另一个错误并且无法保存它:
This must be derived from Secure Canvas URL, Unity Binary URL, Site URL, Mobile Site URL or Secure Page Tab URL. Check and correct the following domains: localhost
我做错了吗?或者对于本地主机来说正确的方法是什么?
您需要先在应用设置中添加“平台”。
添加平台“网站”,并输入http://localhost/
作为站点URL。只有在那之后,您才能从您的本地主机网站调用登录对话框。
我正在为我目前在 locahost 中的应用程序创建一个使用 facebook 身份验证的登录。我在 facebook 中创建了一个应用程序。
现在,当我尝试访问此 URL 时:https://www.facebook.com/dialog/oauth?client_id=my_app_id&redirect_uri=http://localhost:8080/
我收到此错误:
Given URL is not permitted by the application configuration.: One or more of the given URLs is not allowed by the App's settings. It must match the Website URL or Canvas URL, or the domain must be a subdomain of one of the App's domains.
然后我尝试将 localhost
添加到我的应用程序设置 App Domains
并且我在那里遇到另一个错误并且无法保存它:
This must be derived from Secure Canvas URL, Unity Binary URL, Site URL, Mobile Site URL or Secure Page Tab URL. Check and correct the following domains: localhost
我做错了吗?或者对于本地主机来说正确的方法是什么?
您需要先在应用设置中添加“平台”。
添加平台“网站”,并输入http://localhost/
作为站点URL。只有在那之后,您才能从您的本地主机网站调用登录对话框。