Not responding endoint?

Hey there,

https://api.twitch.tv/kraken/streams?game=League+of+Legends&limit=100&offset=0

this end point has stopped working for my website sometime in the last 24 hours. It works just fine when I use it from my home pc, but every request my server makes seems to come back empty.

Turn on cURL debug and see whats up.

Also check your server time is up to date, using something like NTPdate.

If your server wanders tooooooo far from “now” SSL handshakes can/should failt

• make user your server has curl installed and enabled.
• if you are using php and your server doesn’t have an updated certificate, it might be causing this problem. try setting the CURLOPT_SSL_VERIFYPEER to false.

curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); // don't check certificate

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.