的AuthSub。如何检查令牌存在? Python gdata客户端

时间:2012-09-03 07:55:46

标签: python youtube gdata authsub

我开发了一个装饰器来验证我的应用程序并开始使用youtube API。装饰者指定包装REST资源类方法。

def youtube_auth(f):                                            
    def wrap(self, *args, **kwargs):                            
        youtube_serv = gdata.youtube.service.YouTubeService()   
        youtube_serv.ssl = True                                 
        youtube_serv.developer_key = YOUTUBE_DEVELOPER_KEY      
        youtube_serv.client_id = YOUTUBE_CLIENT_ID              
        def get_auth_sub_url():                                 
            # TODO: do not forget to change it to real URL      
            next = 'http://www.example.com/video_upload'        
            scope = 'http://gdata.youtube.com'                  
            secure = False                                      
            session = True                                      

            return youtube_serv.GenerateAuthSubURL(next, scope, 
                 secure, session)                            

        # TODO: understand how to check authsub token           
        # if not youtube_serv.is_authenicated():                
        #     return redirect(get_auth_sub_url())               
        # else:                                                 
        #     parameters = cgi.FieldStorage()                   
        #     authsub_token = parameters.get('token')           
        #     yt_service = gdata.youtube.service.YouTubeService(
        #     yt_service.SetAuthSubToken(authsub_token)         
        #     yt_service.UpgradeToSessionToken()                

        return f(self, *args, **kwargs)                         
    return wrap                                                 

如何检查用户是否经过身份验证(令牌是否存在)?

1 个答案:

答案 0 :(得分:0)

由于这是一款新应用,因此您应该考虑使用新的OAuth 2.0界面。这里的文档:https://developers.google.com/youtube/2.0/developers_guide_protocol_oauth2

工作示例(php):Youtube Oauth 2.0 API Videos Upload Failed