@@ -106,7 +106,7 @@ def __init__(self, path, headers={}, data={}, method=methods.GET):
106106
107107class HiddenApiQuery (JsonQuery ):
108108 def __init__ (self , path , headers = {}, data = {}, method = methods .GET ):
109- headers .setdefault ('Client-Id ' , CLIENT_ID )
109+ headers .setdefault ('Client-ID ' , CLIENT_ID )
110110 if OAUTH_TOKEN :
111111 headers .setdefault ('Authorization' , 'OAuth {access_token}' .format (access_token = OAUTH_TOKEN ))
112112 super (HiddenApiQuery , self ).__init__ (_hidden_baseurl , headers , data , method )
@@ -115,7 +115,7 @@ def __init__(self, path, headers={}, data={}, method=methods.GET):
115115
116116class UsherQuery (DownloadQuery ):
117117 def __init__ (self , path , headers = {}, data = {}, method = methods .GET ):
118- headers .setdefault ('Client-Id ' , CLIENT_ID )
118+ headers .setdefault ('Client-ID ' , CLIENT_ID )
119119 if OAUTH_TOKEN :
120120 headers .setdefault ('Authorization' , 'OAuth {access_token}' .format (access_token = OAUTH_TOKEN ))
121121 super (UsherQuery , self ).__init__ (_usher_baseurl , headers , data , method )
0 commit comments