Hey,
I'm getting some errors when I use the Facebook and Twitter login...
League \ OAuth1 \ Client \ Credentials \ CredentialsException
HELP
Received HTTP status code [401] with message "{"errors":[{"code":32,"message":"Could not authenticate you."}]}" when getting temporary credentials.
and heres the inline code
/home/(USERNAME)/public_html/(DOMAIN)/vendor/league/oauth1-client/src/Client/Server/Server.php
*/
protected function handleTemporaryCredentialsBadResponse(BadResponseException $e)
{
$response = $e->getResponse();
$body = $response->getBody();
$statusCode = $response->getStatusCode();
throw new CredentialsException(
"Received HTTP status code [$statusCode] with message \"$body\" when getting temporary credentials."
);