Hybridauth - PHP - Facebook returned an invalid user id

后端 未结 3 896
萌比男神i
萌比男神i 2020-12-11 16:34

Well I had hybridauth working and login correctly using facebook since 2 weeks ago, I did not any change and this morning I found that it was not working. I tried to switch

3条回答
  •  离开以前
    2020-12-11 16:56

    Maybe your configuration sends KEY instead of ID:

    Facebook Example:

    "keys"    => array ( "id" => "PUT_YOURS_HERE", "secret" => "PUT_YOURS_HERE" )
    

    Twitter Example:

    "keys"    => array ( "key" => "PUT_YOURS_HERE", "secret" => "PUT_YOURS_HERE" )
    

提交回复
热议问题