草庐IT

php - Symfony2 HwioAuth - 从linkedin获取完整的配置文件

coder 2023-06-14 原文

我昨天已经为我关于 symfony2 中的 hwioauthbundle 的问题打开了一个主题。 Symfony2 HWIOauthBundle error with response

感谢 STLoyd 的回答,这帮助我弄清楚了如何使用 bundle 来访问linkedin。

我现在不仅尝试从linkedin获取格式化名称,还尝试获取其他信息,如教育、技能等。

我不确定 HwioAuth 通常是否可以做到这一点? 那是我的 config.yml

hwi_oauth:
firewall_name: main
resource_owners:
    linkedin:
        type: linkedin
        client_id: %linkedin_client_id%
        client_secret: %linkedin_client_secret%
        scope: r_fullprofile
        infos_url: 'https://api.linkedin.com/v1/people/~:(id,educations,languages,skills)?format=json'
        scope:     'r_fullprofile'
        paths:
            educations: educations
            languages: languages
            skills: skills

那是我的 security.yml:

    providers:
     ....
     my_custom_hwi_provider:
        id: linkedin.oauth_user_provider

firewalls:
    main:
       ...
        oauth:
            resource_owners:
                linkedin: "/login/check-linkedin"
            login_path: /login
            failure_path: /login
            oauth_user_provider:
                service: linkedin.oauth_user_provider

这是我的服务类 Provider:

    <?php

namespace XXXX\UtilBundle\Util\OAuthProvider;

use HWI\Bundle\OAuthBundle\Security\Core\User\OAuthUserProvider;
use HWI\Bundle\OAuthBundle\OAuth\Response\UserResponseInterface;

class Provider
{
   protected $session, $doctrine;
   public function __construct($session, $doctrine) {
       $this->session = $session;
       $this->doctrine = $doctrine;

   }



   public function loadUserByOAuthUserResponse(UserResponseInterface $response)
   {
      //data from LINKEDIN response
      var_dump($response);
      exit;
   }
 }

如你所见,我将我从linkedin 获得的json 输出。 Hier 可能是响应和教育领域,技能是空的!

    class HWI\Bundle\OAuthBundle\OAuth\Response\PathUserResponse#694 (4) {
 protected $paths =>
 array(8) {
'identifier' =>
string(2) "id"
'nickname' =>
string(13) "formattedName"
'realname' =>
string(13) "formattedName"
'email' =>
string(12) "emailAddress"
'profilepicture' =>
string(10) "pictureUrl"
'educations' =>
string(10) "educations"
'languages' =>
string(9) "languages"
'skills' =>
string(6) "skills"
}
protected $response =>
 array(1) {
 'id' =>
 string(10) "XYXYXYXYXYXYXY"
}
protected $resourceOwner =>
class HWI\Bundle\OAuthBundle\OAuth\ResourceOwner\LinkedinResourceOwner#699 (8) {
  protected $options =>
    array(8) {
    'authorization_url' =>
    string(49) "https://www.linkedin.com/uas/oauth2/authorization"
    'access_token_url' =>
    string(47) "https://www.linkedin.com/uas/oauth2/accessToken"
    'infos_url' =>
    string(81) "https://api.linkedin.com/v1/people/~:(id,educations,languages,skills)?format=json"
    'csrf' =>
    bool(true)
    'client_id' =>
    string(12) "XYXYXYXYXYXYXY"
    'client_secret' =>
    string(16) "XYXYXYXYXYXYXY"
    'scope' =>
    string(29) "r_fullprofile"
    'options' =>
    array(0) {
    ...
   }
  }
  protected $paths =>
   array(8) {
    'identifier' =>
      string(2) "id"
     'nickname' =>
       string(13) "formattedName"
     'realname' =>
       string(13) "formattedName"
     'email' =>
       string(12) "emailAddress"
     'profilepicture' =>
       string(10) "pictureUrl"
     'educations' =>
       string(10) "educations"
     'languages' =>
       string(9) "languages"
     'skills' =>
       string(6) "skills"
    }
    protected $defaultOptions =>
     array(6) {
      'client_id' =>
        NULL
      'client_secret' =>
        NULL
      'infos_url' =>
        NULL
      'user_response_class' =>
        string(54) "HWI\Bundle\OAuthBundle\OAuth\Response\PathUserResponse"
      'scope' =>
        NULL
      'csrf' =>
        bool(false)
     }
   protected $httpClient =>
   class Buzz\Client\Curl#700 (7) {
      private $lastCurl =>
      resource(286) of type (curl)
      protected $options =>
       array(2) {
       ...
    }
   protected $ignoreErrors =>
    bool(true)
   protected $maxRedirects =>
    int(5)
   protected $timeout =>
    int(5)
   protected $verifyPeer =>
    bool(true)
   protected $proxy =>
    NULL
  }
   protected $name =>
    string(8) "linkedin"
    protected $state =>
    NULL
    protected $storage =>
  class HWI\Bundle\OAuthBundle\OAuth\RequestDataStorage\SessionStorage#701 (1) {
    private $session =>
      class Symfony\Component\HttpFoundation\Session\Session#220 (3) {
      ...
   }
  }
    public $httpUtils =>
    class Symfony\Component\Security\Http\HttpUtils#230 (2) {
    private $urlGenerator =>
    class Symfony\Bundle\FrameworkBundle\Routing\Router#233 (9) {
     ...
    }
    private $urlMatcher =>
    class Symfony\Bundle\FrameworkBundle\Routing\Router#233 (9) {
     ...
   }
  }
}
 protected $oAuthToken =>
 class HWI\Bundle\OAuthBundle\Security\Core\Authentication\Token\OAuthToken#696 (11) {
  private $accessToken =>
   string(179) "XYXYXYXYXYXYXY"
   private $rawToken =>
    array(2) {
     'expires_in' =>
     int(5183807)
     'access_token' =>
      string(179) "XYXYXYXYXYXYXYXY"
   }
   private $refreshToken =>
  NULL
   private $expiresIn =>
   int(5183807)
   private $createdAt =>
   int(1378302276)
   private $tokenSecret =>
   NULL
   private $resourceOwnerName =>
   NULL
   private $user =>
   NULL
   private $roles =>
    array(0) {
   }
   private $authenticated =>
    bool(false)
    private $attributes =>
    array(0) {
    }
 }

}

在 protected $oAuthToken => 中是值 私有(private) $authenticated => bool (假)

我被认证了吗? 以及如何从 Linkedin 访问以 r_fullprofile 作为范围的其他字段?

问候

最佳答案

看看这个LinkedIn API client和它的第一个例子。你通过

取东西
$linkedIn->api('v1/people/~:(firstName,lastName)');

另外,看看 API documentation .它清楚地说明了您可以获取哪些字段以及如何获取。

关于php - Symfony2 HwioAuth - 从linkedin获取完整的配置文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18616665/

有关php - Symfony2 HwioAuth - 从linkedin获取完整的配置文件的更多相关文章

  1. ruby - 简单获取法拉第超时 - 2

    有没有办法在这个简单的get方法中添加超时选项?我正在使用法拉第3.3。Faraday.get(url)四处寻找,我只能先发起连接后应用超时选项,然后应用超时选项。或者有什么简单的方法?这就是我现在正在做的:conn=Faraday.newresponse=conn.getdo|req|req.urlurlreq.options.timeout=2#2secondsend 最佳答案 试试这个:conn=Faraday.newdo|conn|conn.options.timeout=20endresponse=conn.get(url

  2. ruby - 从 Ruby 中的主机名获取 IP 地址 - 2

    我有一个存储主机名的Ruby数组server_names。如果我打印出来,它看起来像这样:["hostname.abc.com","hostname2.abc.com","hostname3.abc.com"]相当标准。我想要做的是获取这些服务器的IP(可能将它们存储在另一个变量中)。看起来IPSocket类可以做到这一点,但我不确定如何使用IPSocket类遍历它。如果它只是尝试像这样打印出IP:server_names.eachdo|name|IPSocket::getaddress(name)pnameend它提示我没有提供服务器名称。这是语法问题还是我没有正确使用类?输出:ge

  3. ruby - 获取模块中定义的所有常量的值 - 2

    我想获取模块中定义的所有常量的值:moduleLettersA='apple'.freezeB='boy'.freezeendconstants给了我常量的名字:Letters.constants(false)#=>[:A,:B]如何获取它们的值的数组,即["apple","boy"]? 最佳答案 为了做到这一点,请使用mapLetters.constants(false).map&Letters.method(:const_get)这将返回["a","b"]第二种方式:Letters.constants(false).map{|c

  4. ruby-on-rails - 获取 inf-ruby 以使用 ruby​​ 版本管理器 (rvm) - 2

    我安装了ruby​​版本管理器,并将RVM安装的ruby​​实现设置为默认值,这样'哪个ruby'显示'~/.rvm/ruby-1.8.6-p383/bin/ruby'但是当我在emacs中打开inf-ruby缓冲区时,它使用安装在/usr/bin中的ruby​​。有没有办法让emacs像shell一样尊重ruby​​的路径?谢谢! 最佳答案 我创建了一个emacs扩展来将rvm集成到emacs中。如果您有兴趣,可以在这里获取:http://github.com/senny/rvm.el

  5. Ruby 从大范围中获取第 n 个项目 - 2

    假设我有这个范围:("aaaaa".."zzzzz")如何在不事先/每次生成整个项目的情况下从范围中获取第N个项目? 最佳答案 一种快速简便的方法:("aaaaa".."zzzzz").first(42).last#==>"aaabp"如果出于某种原因你不得不一遍又一遍地这样做,或者如果你需要避免为前N个元素构建中间数组,你可以这样写:moduleEnumerabledefskip(n)returnto_enum:skip,nunlessblock_given?each_with_indexdo|item,index|yieldit

  6. ruby - Net::HTTP 获取源代码和状态 - 2

    我目前正在使用以下方法获取页面的源代码:Net::HTTP.get(URI.parse(page.url))我还想获取HTTP状态,而无需发出第二个请求。有没有办法用另一种方法做到这一点?我一直在查看文档,但似乎找不到我要找的东西。 最佳答案 在我看来,除非您需要一些真正的低级访问或控制,否则最好使用Ruby的内置Open::URI模块:require'open-uri'io=open('http://www.example.org/')#=>#body=io.read[0,50]#=>"["200","OK"]io.base_ur

  7. ruby - 没有类方法获取 Ruby 类名 - 2

    如何在Ruby中获取BasicObject实例的类名?例如,假设我有这个:classMyObjectSystem我怎样才能使这段代码成功?编辑:我发现Object的实例方法class被定义为returnrb_class_real(CLASS_OF(obj));。有什么方法可以从Ruby中使用它? 最佳答案 我花了一些时间研究irb并想出了这个:classBasicObjectdefclassklass=class这将为任何从BasicObject继承的对象提供一个#class您可以调用的方法。编辑评论中要求的进一步解释:假设你有对象

  8. ruby-on-rails - 如何在 Gem 中获取 Rails 应用程序的根目录 - 2

    是否可以在应用程序中包含的gem代码中知道应用程序的Rails文件系统根目录?这是gem来源的示例:moduleMyGemdefself.included(base)putsRails.root#returnnilendendActionController::Base.send:include,MyGem谢谢,抱歉我的英语不好 最佳答案 我发现解决类似问题的解决方案是使用railtie初始化程序包含我的模块。所以,在你的/lib/mygem/railtie.rbmoduleMyGemclassRailtie使用此代码,您的模块将在

  9. ruby - 如何使用 CarrierWave 从 S3 获取真实文件 - 2

    我有一个应用程序可以读取文件的内容并为其编制索引。我将它们存储在磁盘本身中,但现在我使用的是AmazonS3,因此以下方法不再适用。事情是这样的:defperform(docId)@document=Document.find(docId)if@document.file?#Youshould'tcreateanewversion@document.versionlessdo|doc|@document.file_content=Cloudoc::Extractor.new.extract(@document.file.file)@document.saveendendend@docu

  10. 【鸿蒙应用开发系列】- 获取系统设备信息以及版本API兼容调用方式 - 2

    在应用开发中,有时候我们需要获取系统的设备信息,用于数据上报和行为分析。那在鸿蒙系统中,我们应该怎么去获取设备的系统信息呢,比如说获取手机的系统版本号、手机的制造商、手机型号等数据。1、获取方式这里分为两种情况,一种是设备信息的获取,一种是系统信息的获取。1.1、获取设备信息获取设备信息,鸿蒙的SDK包为我们提供了DeviceInfo类,通过该类的一些静态方法,可以获取设备信息,DeviceInfo类的包路径为:ohos.system.DeviceInfo.具体的方法如下:ModifierandTypeMethodDescriptionstatic StringgetAbiList​()Obt

随机推荐