GAE生成HTTP错误400:错误的请求回溯当从Twitch.tv API索引网址 [英] GAE Generating HTTP Error 400: Bad Request Traceback When Indexing URL from Twitch.tv API

查看:196
本文介绍了GAE生成HTTP错误400:错误的请求回溯当从Twitch.tv API索引网址的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我似乎当应用程序部署到得到这个错误,但不是当被送达在localhost是:

I seem to get this error when the application is deployed, however not when it is being served on localhost:

E 2012-08-21 18:03:46.914 HTTP Error 400: Bad Request Traceback (most recent call last): File "/base/python27_runtime/python27_lib/versions/third_party/webapp2-2.3/webapp2.py

E 2012-08-21 18:03:46.916 Traceback (most recent call last): File "/base/python27_runtime/python27_lib/versions/1/google/appengine/runtime/wsgi.py", line 195, in Handle

在code是产生这个错误就设在这里(请原谅巨大的处理程序):

The code that is generating this error is located here (please forgive the huge handler):

class Dashboard(MainHandler):

def check_if_live(self,b):
    url = ('http://api.justin.tv/api/stream/list.json?channel=%s' %b)
    contents = urllib2.urlopen(url)
    if contents.read() == '[]':
        return 'Offline'
    else:
        return 'Live'

def get(self, profile_id):
    u = User.by_name(profile_id.lower())
    if not u:
        self.redirect('/')
    elif self.user.name != profile_id:
        self.redirect('/profile/%s' %self.user.name)
    elif self.user and profile_id:
        current_user = self.user.name
        name1 = ''
        friend_name = ''
        team_imagee = ''
        key = ''
        monthss = ''
        yearss = ''
        dayss = ''
        countryss = ''
        team_imagee2 = ''
        imgs2 = ''
        imgs = ''
        key2 = ''
        name22 = ''
        name2 = ''
        streamss = ''
        streams_title = ''
        imgs  = db.GqlQuery("select * from Profile_Images WHERE name =:1", profile_id)
        imgs2  = db.GqlQuery("select * from Profile_Images WHERE name =:1", current_user)
        team_name  = db.GqlQuery("select * from Teams WHERE name =:1", profile_id)
        team_images  = db.GqlQuery("select * from Teamimg WHERE user =:1", profile_id)
        team_images2  = db.GqlQuery("select * from Teamimg WHERE user =:1", current_user)
        friends  = db.GqlQuery("select * from Friends WHERE name =:1 order by added_date desc limit 10", profile_id)
        posts = db.GqlQuery("select * from Profile_Comments WHERE name_of_profile =:1 order by date_created desc", profile_id)
        name2 = db.GqlQuery("select * from User WHERE name =:1", profile_id)
        month = db.GqlQuery("select * from User WHERE name =:1", profile_id)
        day = db.GqlQuery("select * from User WHERE name =:1", profile_id)
        year = db.GqlQuery("select * from User WHERE name =:1", profile_id)
        country = db.GqlQuery("select * from User WHERE name =:1", profile_id)
        streams = db.GqlQuery("select * from Streams WHERE username =:1", current_user)
        for stream_title in streams:
            streams_title = stream_title.stream_title
        for stream in streams:
            streamss = stream.stream
        for months in month:
            monthss = months.month
        for countrys in country:
            countryss = countrys.country
        for days in day:
            dayss = days.day
        for years in year:
            yearss = years.year
        for clan in team_name:
                name1 = clan.team_name_anycase
        for clan in team_name:
                name2 = clan.team_name
        for image in team_images:
            team_imagee = image.key()
        for image2 in team_images2:
            team_imagee2 = image2.key()
        for img in imgs:
            key = img.key()
        for img2 in imgs2:
            key2 = img2.key()
        streamm = (streamss[(streamss.find('.tv/')+ 4):])
        check_if_life2 = self.check_if_live((streamss[(streamss.find('.tv/')+ 4):]))
        self.render('dashboard.html', streams = streams, stream_title2 = streamm, stream_title = streams_title, check_if_life = check_if_life2, team_name2 = name2,  imgs = imgs, team_img2 = team_imagee2, profile_image_posted = key2, posts = posts, profile_id = profile_id, country_var = countryss, day_var = dayss, year_var = yearss, month_var = monthss, current_user = current_user, friends = friends, team_img = team_imagee, team_name = name1, profile_image = key, username = self.user.name, email = self.user.email, firstname = self.user.first_name, last_name = self.user.last_name, country = self.user.country)
    else:
        self.redirect('/register')

这是具体是什么原因造成的:

This is specifically what is causing it:

    streamm = (streamss[(streamss.find('.tv/')+ 4):])
    check_if_life2 = self.check_if_live((streamss[(streamss.find('.tv/')+ 4):]))

这使得利用顶部的功能check_if_live'的。作为一个总蟒蛇小白,我不能为我的生活弄清楚为什么正在生成活,而不是在本地主机上此错误。

Which makes use of the function 'check_if_live' at the top. As a total python noob, I can't for the life of me figure out why this error is being generated live and not on localhost.

编辑:

我仍然不能得到API工作。它的有趣如何,如果你调用地址栏API,为实例 HTTP: //api.justin.tv/api/stream/list.json?channel=nasltv ,它工作正常。但只要它涉及应用程序引擎,它失败。我只需要指数这个API!啊!

I still cannot get the API to work. Its interesting how if you call the API in the address bar, for instances http://api.justin.tv/api/stream/list.json?channel=nasltv, it works fine. But as soon as it touches app engine, it fails. I just need to index this API! Ah!

推荐答案

有没有涉及您所呼叫的API身份验证?也许有是国营的cookie重定向。 IIRC重定向行为,督促和开发之间是不同的。

Is there authentication involved in the API you are calling? Maybe there is a redirection that stes a cookie. IIRC the redirect behavior differs between prod and dev.

这篇关于GAE生成HTTP错误400:错误的请求回溯当从Twitch.tv API索引网址的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆