ruby-stackoverflow icon indicating copy to clipboard operation
ruby-stackoverflow copied to clipboard

Retreive information for single user

Open lfender6445 opened this issue 10 years ago • 1 comments

I want to retrieve information for a single user based on a name (not a substring) or an id - is this possible?

lfender6445 avatar Apr 07 '15 00:04 lfender6445

You can find users by ids RubyStackoverflow.users_by_ids([ids], options = {})

For example response = RubyStackoverflow.users_by_ids(['1363236']) response.data.first.display_name

raysrashmi avatar Apr 08 '15 17:04 raysrashmi