overwolf.social.reddit.getUserInfo
Overwolf APIs / overwolf / overwolf / social / reddit / getUserInfo
function getUserInfo(callback: CallbackFunction<GetUserInfoResult<User>>): void;
If the user is currently logged into Reddit, this will return user information: { userInfo: { avatar: "http://abs.twimg.com/sticky/...", displayName: "u/foobar", name: "foobar" } } Otherwise, an error is returned.
Parameters
| Parameter | Type | Description |
|---|---|---|
callback | CallbackFunction<GetUserInfoResult<User>> | Will contain user information or error if the request has failed. |
Returns
void