Facebook Callback appends '#_=_' to Return URL

前端 未结 23 2033
爱一瞬间的悲伤
爱一瞬间的悲伤 2020-11-22 14:56

Facebook callback has started appending #_=_ hash underscore to the Return URL

Does anyone know why? What is the solution?

23条回答
  •  温柔的废话
    2020-11-22 15:31

    The easiest and clean solution to remove "#_=_" (PHP):

    Instead of "header("Location: xxx.php");" to use "echo ("location.href = 'xxx.php';");"

提交回复
热议问题