plu / Pithub

Perl Github v3 API

Home Page:http://metacpan.org/module/Pithub

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

enharcment request to provide email address on a users keyword search

kevindawson opened this issue · comments

when we do the following

my $search = Pithub::Search->new;
my $result = $search->users(
    keyword => 'kevindawson',
);

can we also have an email key and value returned as well please

    users   [
        [0] {
            created             "2012-04-29T21:27:34Z",
            created_at          "2012-04-29T21:27:34Z",
            followers           7,
            followers_count     7,
            fullname            "BOWTIE",
            gravatar_id         "9f27e15605c9a2d35a4f307a0bbf5dbf",
            id                  "user-1690861",
            language            "Perl",
            location            "UK",
            login               "kevindawson",
            name                "BOWTIE",
            public_repo_count   23,
            repos               23,
            score               40.84794,
            type                "user",
            username            "kevindawson"
        }
    ]

thanks

Pithub just returns what the Github API returns. If there's no email key and value, then the API doesn't provide any, sorry.

See also: https://api.github.com/search/users?q=kevindawson

plu many thanks for the quick response

You're welcome 👍