Twitter OAuth返回401无效请求令牌

时间:2016-11-01 05:52:21

标签: laravel twitter oauth laravel-socialite

我正在使用Laravel Socialite(特别是this)并且突然间,我在回到回调时得到了这个:

LoadModule dispatcher_module libexec/apache2/dispatcher-apache2.4-4.2.0.so

过去工作得很好。我试过了:

  • 在Twitter Dev中删除我的测试/开发应用程序,
  • 重新生成我的应用程序密钥
  • 确保选中“启用OAuth”选项,
  • 启用回调锁,

我完全难过,因为一切正常,似乎应该是。

1 个答案:

答案 0 :(得分:1)

我修复了同样的错误。 如果修改并覆盖以下方法,则可以使用。

SocialiteProviders \管理器\您好!OAuth1 \服务器:: getTokenCredentials()

//$response = $client->post($uri, $headers, $bodyParameters)->send();
$response = $client->post($uri, [
                'headers' => $headers,
                'form_params' => $bodyParameters,
]);