سؤال

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