Facebook graph api facebook最近开始发送仅在Graph API中压缩的数据了吗

Facebook graph api facebook最近开始发送仅在Graph API中压缩的数据了吗,facebook-graph-api,gzip,Facebook Graph Api,Gzip,出于某种原因,此查询始终返回标准字符串(json)。出于某种原因,从今天(2014年1月24日)开始,结果将被公布。很容易修复,但我不知道Graph API在输出方面有任何更改。有没有其他人听说过或正在经历这种情况 req = urllib2.Request(x) req = 'https://graph.facebook.com/search?q=%22are%20eligible%20for%20disability%20compensation%20from%20the%20Departm

出于某种原因,此查询始终返回标准字符串(json)。出于某种原因,从今天(2014年1月24日)开始,结果将被公布。很容易修复,但我不知道Graph API在输出方面有任何更改。有没有其他人听说过或正在经历这种情况

req = urllib2.Request(x)
req = 'https://graph.facebook.com/search?q=%22are%20eligible%20for%20disability%20compensation%20from%20the%20Department%20of%22&limit=250&type=post&until=1390665731&access_token=xxxxxxxxxxxxxxxxxxxxX2HTOgagZDZD&locale=en_US'
response = urllib2.urlopen(req)
the_page = response.read()
print the_page
sys.exit(0)

开发者注意:请不要在Q和A中发布访问令牌或密钥。

我们也遇到了同样的问题。15分钟前自行解决。

您的url库是否发送了表示您将接受GZIP编码的标题?