I figured I would post my findings here.
My original thread is here:
http://support.twitch.tv/discussion/6124/twitch-api-is-generating-an-error-in-app-engine#latest
Any who, the issue is with Twitch TV's API servers. For some reason, app engine is getting blacklisted from receiving any answers when a call is made to the servers. I confirmed this by writing an app that simply prints the call strings on the page. The twitch tv call failed when deployed, where as the ow3d.tv api call worked perfectly.
This is the application that failed (twitch):
import webapp2
import urllib2
class MainHandler(webapp2.RequestHandler):
def get(self):
url = ('https://api.twitch.tv/kraken/streams/nl_kripp')
contents = urllib2.urlopen(url)
self.response.out.write(contents.read())
app = webapp2.WSGIApplication([('/', MainHandler)],
debug=True)
This is the application that worked (own3d.tv):
import webapp2
import urllib2
class MainHandler(webapp2.RequestHandler):
def get(self):
url = ('http://api.own3d.tv/liveCheck.php?live_id=10588')
contents = urllib2.urlopen(url)
self.response.out.write(contents.read())
app = webapp2.WSGIApplication([('/', MainHandler)],
debug=True)
If someone could pass this on to the API team, it would be greatly appreciated. Sorry for the time i've consumed... Hopefully this gets fixed! I need Twitch TV in my Application !
--
You received this message because you are subscribed to the Google Groups "Justin.tv API Developers" group.
To post to this group, send email to justintv-ap...@googlegroups.com.
To unsubscribe from this group, send email to justintv-api-deve...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msg/justintv-api-developers/-/XNx6Xj1BBDoJ.
For more options, visit https://groups.google.com/groups/opt_out.
To unsubscribe from this group, send email to justintv-api-developers+unsub...@googlegroups.com.
--
You received this message because you are subscribed to the Google Groups "Justin.tv API Developers" group.
To post to this group, send email to justintv-ap...@googlegroups.com.
To unsubscribe from this group, send email to justintv-api-deve...@googlegroups.com.