我正在制作一个类似facebook Messenger的应用程序,并且我正在寻找一种解决方案来优化我的应用程序,当我使用Api获取用户头像列表时,应用程序速率限制突然增加,有没有一种方法可以改善这,或者有可以帮助我的中间应用程序。
我尝试在第一次检索数据时将用户的图像保存到数据库中,但是当用户更改了头像时无效。
FB.api('/'+page_id+'/conversations?fields=snippet,senders,updated_time&limit='+limit,'GET', function(response) {
if(response && !response.error)
{
$.each(response.data, function(i, item) {
// let user_id = item.senders.data[0].id
// get user picture link below
// 'https://graph.facebook.com/v3.3/'+user_id+'/picture'
});
}
});