-3
  Getting the  linkedin user profile

     my $profile_xml = $li->request(
                       request_url         => 'http://api.linkedin.com/v1/people/~:(id,first-name,last-name,positions,industry,distance)',
                       access_token        => $access_token->{token},
                       access_token_secret => $access_token->{secret},

);

結果は出ましたが、id、名、姓を別々に取得したいです。GetElementByTheTagName を使用して値を取得する方法。

4

2 に答える 2

0

次のように xml コンテンツを管理できる場合:

 $str = '<id>bYdSs9C</id><first-name>Jack</first-name> <last-name>Rudloph</last-name>';

これを使用してフィールドを取得できます

while ($str =~ /<.*?>(.*?)<\/.*?>/g) {
        print $1, "\n";
}
于 2013-09-10T07:48:02.993 に答える