Railsでomniauth-linkedingemを使用していて、「r_fullprofile」と「r_network」からデータを取得しようとしています。
omniauth.rbの場合:
provider :linkedin, 'consumer_key', 'consumer_secret',
:scope => 'r_fullprofile r_emailaddress r_network',
:fields => ["id", "email-address", "first-name", "last-name",
"headline", "industry", "picture-url", "public-profile-url",
"location", "connections", "skills", "date-of-birth", "phone-numbers",
"educations", "three-current-positions" ]
コントローラー内:
render :text => request.env["omniauth.auth"].to_yaml
結果の出力には、「r_basicprofile」のデータのみが含まれているようです。残りの必要なデータ(「接続」、「スキル」、「教育」など)を解析するためにどのように取得できますか?