justintv / Twitch-API

A home for details about our API
www.twitch.tv
1.72k stars 379 forks source link

All feed endpoints return 404 #552

Closed s1mpl3x closed 8 years ago

s1mpl3x commented 8 years ago

All endpoints described in https://github.com/justintv/Twitch-API/blob/master/v3_resources/channel_feed.md return error 404.

Valid (checked with root/GET) auth-token with the channel_feed_read and channel_feed_edit scopes provided, as well as a client-id.

I guess this is related to the beta status of the whole feed thing? If this is the case, any ETA?

freaktechnik commented 8 years ago

They return a 404 if the user has not enabled the channel feed beta. Generally you should look at the returned JSON and post the error message here.

s1mpl3x commented 8 years ago
$ curl -H 'Accept: application/vnd.twitchtv.v3+json' -H 'Authorization: OAuth XXX' -X GET https://api.twitch.tv/kraken/feed/sykpl3x?limit=1

{"error":"Not Found","status":404,"message":null}

feed beta enabled on that account

bashtech commented 8 years ago

It's https://api.twitch.tv/kraken/feed/sykpl3x/posts?limit=1

There is an error in the example block.

On Sun, May 22, 2016 at 11:48 AM Jan notifications@github.com wrote:

$ curl -H 'Accept: application/vnd.twitchtv.v3+json' -H 'Authorization: OAuth XXX' -X GET https://api.twitch.tv/kraken/feed/sykpl3x?limit=1 {"error":"Not Found","status":404,"message":null}

feed beta enabled on that account

— You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub https://github.com/justintv/Twitch-API/issues/552#issuecomment-220839404

s1mpl3x commented 8 years ago

ok that was the problem, thanks!