Working with Facebook login from localhost

前端 未结 9 2113
无人及你
无人及你 2020-12-09 08:29

I have a React/Horizon app with facebook login. I am wondering if there is any option to work with facebook login from localhost?

9条回答
  •  再見小時候
    2020-12-09 09:02

    If you're using react and your local server is on http and still getting the error run this in the terminal to start up an https localhost

    Windows:
    set HTTPS=true&&npm start

    Windows Powershel:
    ($env:HTTPS = "true") -and (npm start)

    Linux and macOS (Bash):
    HTTPS=true npm start

    when it opens in the browser click Advanced and proceed

提交回复
热议问题