2

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

and

b. Can it be removed?

Adriaan Nel
  • 370
  • 1
  • 11

2 Answers2

1

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

Community
  • 1
  • 1
Akshay Raje
  • 852
  • 9
  • 20
0

One suggestion is to remove character from string for example

public function login($provider) {

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

Try that.

Muhammad Tahir
  • 2,351
  • 29
  • 25