Cant get streams/followed with generated OAuth CCF token (user_read scope)

What am i doing wrong? i m sending request like this request({
https://api.twitch.tv/kraken/oauth2/token?client_id=’+account.clientID+’&client_secret=’+account.client_secret+’&grant_type=client_credentials&scope=user_read’,

then, i use generated access token to get streams/followed
'https://api.twitch.tv/kraken/streams/followed?ouath_token=’+access.access_token+’&client_id=’+account.clientID

but it returns 401. Pls Help

You seem to be using an App access token. You need a User access token to access users’ auth-gated resources.

Being able to get users followed channels without auth and not able to get user followed streams is kinda weird