1

我收到类似的错误

未知属性– yii\base\UnknownPropertyException

设置未知属性:yii\authclient\clients\Twitter::requestEmail

每当我包含'requestEmail' => 'true',web.php'authClientCollection' => [components

网页.php

$config = [
  .
    .
  'components' => [
        .
        .
        'authClientCollection' => [
        'class' => 'yii\authclient\Collection',
        'clients' => [
        'twitter' => [
          'class' => 'yii\authclient\clients\Twitter',
          'requestEmail' => 'true',
          'consumerKey' => 'IFK2OMG0rKIFK2Jt4rLvw',
          'consumerSecret' => 'ImTprQzaOMG0rKZsZiPDIvwIFK2aOMG0rKZsZiPD',
        ],
      ],
    ],
],

UsersController.php(控制器)

class UsersController extends CommonController 
{
    .
    .
    public function actions() {
    return [
      .
      .
      'auth' => [
        'class' => 'yii\authclient\AuthAction',
        'successCallback' => [$this, 'oAuthSuccess'],
      ],
    ];
  }

    .
    .
    public function oAuthSuccess($client) {
      // get user data from client
      $userAttributes = $client->getUserAttributes();
      var_dump($userAttributes); die;
      // do some thing with user data. for example with $userAttributes['email']
  }

}

login.php (查看)

.
.
<p class="text-center">
    <?= yii\authclient\widgets\AuthChoice::widget([
        'baseAuthUrl' => ['/users/users/auth']
   ]) ?>
</p>
.
.

但是,一旦我'requestEmail' => 'true',web.php中省略了这一行。它正在工作。我正在获取所有必需的数据,除了email. 但是,问题是:我没有让email用户尝试登录。任何想法,我怎么能得到。任何提示/建议都会对我有很大帮助。谢谢。

4

1 回答 1

3

最后,我明白了。

这个答案是为那些刚刚安装Twitter API卡在中间的人准备的。

循序渐进。

1)如果您已经创建了“ Consumer Key(API Key) ”和“ Consumer Secret(API Secret) ”。然后,直接进入Point-5。 否则,php composer.phar require --prefer-dist yiisoft/yii2-authclient "*"在您的系统中运行此命令。并且,生成“消费者密钥(API Key) ”和“消费者秘密(API Secret) ”。关注创建新应用Twitter 应用文档

2)web.php 中

$config = [
        .
          .
        'components' => [
              .
              .
              'authClientCollection' => [
              'class' => 'yii\authclient\Collection',
              'clients' => [
                'twitter' => [
                  'class' => 'yii\authclient\clients\Twitter',
                  'consumerKey' => 'Generated Consumer Key (API Key)',
                  'consumerSecret' => 'Generated Consumer Secret (API Secret)',
                ],
             ],
          ],
    ],

3)YourController.php(控制器)中:在函数和函数中添加auth部分(正如我声明的)actions()oAuthSuccess($client)

class UsersController extends CommonController 
    {
          .
          .
          public function actions() {
                return [
                  .
                  .
                  'auth' => [
                    'class' => 'yii\authclient\AuthAction',
                    'successCallback' => [$this, 'oAuthSuccess'],
                  ],
                ];
            }

          .
          .
          public function oAuthSuccess($client) {
            // get user data from client
            $userAttributes = $client->getUserAttributes();
            var_dump($userAttributes); die;
            // do some thing with user data. for example with  $userAttributes['email']
          }
          .
          .

    }

4)YourView.php(视图)

<?= yii\authclient\widgets\AuthChoice::widget([
    'baseAuthUrl' => ['/users/users/auth']
]) ?>

5)向 twitter 发送支持票以将您的应用列入白名单。选择I need access to special permissions并填写必填字段并提交。

6)几分钟/几小时后,您将收到一封说明/主题“请求电子邮件访问权限”的电子邮件。电子邮件会提示您登录apps.twitter.com

登录成功后,

  • 点击你的Application Name.
  • 转到“设置”选项卡,填写Privacy Policy URLTerms of Service URL文本字段。通过Update Settings按钮保存。
  • 转到“权限”选项卡,选中Request email addresses from users复选框。Update Settings并且,通过按钮保存它。
  • 转到“密钥和访问令牌”选项卡,然后再次在部分中“重新生成使用者密钥和秘密Application Actions
  • 重新生成Consumer Key (API Key)Consumer Secret (API Secret)保存到Web.php文件后。
  • 不要忘记关注本节中的最后 2 点。

在最后,

7)转到子目录:

Root Folder -> vendor -> yiisoft -> yii2-authclient -> clients -> Twitter.php

推特.php

改变

protected function initUserAttributes()
{
    return $this->api('account/verify_credentials.json', 'GET');
}

protected function initUserAttributes()
{
    return $this->api('account/verify_credentials.json', 'GET', ['include_email' => 'true']);
}

[注意:我使用的是 Yii2-App-Basic。在 Yii2-App-Advanced 中,只有文件位置路径会被改变。]

相关搜索

于 2016-03-30T14:52:03.807 回答