Skip to main content

User - Follow

Description

Follow a user on twitch (and turn of notifications if desired).

danger

This mutation no longer works, and can risk your account getting banned.

Method Definition

Required Parameters

NameTypeDescription
authTokenstringUser Auth Token
targetUserIdnumberTarget User Id
notificationbooleanEnable notifications?

Optional Parameters

None

Code-Snippets

follow a user (without notifications)

twitchClient.getGraphQL().followUser(credential, 24943033l, false).execute();

follow a user (with notifications)

twitchClient.getGraphQL().followUser(credential, 24943033l, true).execute();