1

omn​​iauthを正しく設定し、YouTubeユーザーの属性の一部を含む、他のいくつかのプロバイダーの応答を解析できますが、YouTubeユーザーのチャンネルへのリンクを取得できません。応答は次のようになります。最後の行のリンクを取得しようとしています。

--- !ruby/hash:OmniAuth::AuthHash
provider: youtube
uid: http://gdata.youtube.com/feeds/api/users/DLjkduRouoiweRktkkl
info: !ruby/hash:OmniAuth::AuthHash::InfoHash
  uid: http://gdata.youtube.com/feeds/api/users/DLjkduRouoiweRktkkl
  nickname: Example User
  email: exampleuser@gmail.com
  first_name: Example
  last_name: User
  image: http://lh3.googleusercontent.com/-7vCkdsSDAfsU/AAAAAAAAAAA/kjRe3kjk/s88-c-k/photo.jpg
  description: 
  location: Example City CA, US
  channel_title: Example User
  subscribers_count: '66'
credentials: !ruby/hash:Hashie::Mash
  token: kh58.lkjASDF93-W2-ADFJkjfdo498_W8IWnjWTWY
  expires_at: 1354004818
  expires: true
extra: !ruby/hash:Hashie::Mash
  user_hash: !ruby/hash:Hashie::Mash
    xmlns: http://www.w3.org/2005/Atom
    xmlns$media: http://search.yahoo.com/mrss/
    xmlns$gd: http://schemas.google.com/g/2005
    xmlns$yt: http://gdata.youtube.com/schemas/2007
    id: !ruby/hash:Hashie::Mash
      $t: http://gdata.youtube.com/feeds/api/users/DLjkduRouoiweRktkkl
    published: !ruby/hash:Hashie::Mash
      $t: '2012-02-14T23:39:43.000Z'
    updated: !ruby/hash:Hashie::Mash
      $t: '2012-11-27T06:07:22.000Z'
    category:
    - !ruby/hash:Hashie::Mash
      scheme: http://schemas.google.com/g/2005#kind
      term: http://gdata.youtube.com/schemas/2007#userProfile
    title: !ruby/hash:Hashie::Mash
      $t: Example User
      type: text
    content: !ruby/hash:Hashie::Mash
      $t: Example user channel description
      type: text
    link:
    - !ruby/hash:Hashie::Mash
      rel: alternate
      type: text/html
      href: http://www.youtube.com/channel/kljasdSDAF98324
      .
      .
      .

ユーザーモデルでこれを行うと、上部にある「ニックネーム」のようなものにたどり着くことができます。

def add_omniauth(auth)
  user.name = auth["info"]["nickname"]
end

しかし、いったいどうやって一番下のURLにたどり着くのでしょうか。私は試した:

user.link = auth["extra"]["user_hash"]["link"]["href"]

しかし、役に立たない。RailsとRubyの初心者として、私は助けに感謝します。

4

1 に答える 1

0

さて、結局のところ、リンク:YouTubeの応答は配列です。隣にハッシュとして表示されていないのでわかります。ここで私の友人と話した後、私はそれを学びました。したがって、応答の下部にそのリンクを表示するには、次のようにします。

self.url = auth["extra"]["user_hash"]["link"].first["href"]
于 2012-11-27T18:12:51.983 に答える