문제

a. Why does Hybridauth login with facebook add #= to the url after a successful login?

and

b. Can it be removed?

도움이 되었습니까?

해결책

This is not a Hybridauth issue, its a 'by design' implementation in the Facebook OAuth flow. Check this SO question for more detailed information.

다른 팁

One suggestion is to remove character from string for example

public function login($provider) {

  $provider = str_replace("#_=_", "", $provider);

Try that.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top