我正在尝试检查Twitter中的用户是否使用默认图片配置文件。我在API中找到了link,它解释了存在default_profile_image布尔字段,该字段定义用户是否使用默认pic。但是,我没有找到哪个类可以找到这个default_profile_image图片。有什么想法吗?
我发现所有默认图片都有以下错误的网址:
https://abs.twimg.com/sticky/default_profile_images/default_profile_2_normal.png
https://abs.twimg.com/sticky/default_profile_images/default_profile_4_bigger.png
所以,我可以查看图片网址名称。如何检查用户url图像是否包含路径子串https://abs.twimg.com/sticky/default_profile_images?
答案 0 :(得分:1)
用户方法isDefaultProfileImage()。
/**
* Tests if the user has not uploaded their own avatar
*
* @return if the user has not uploaded their own avatar
*/
boolean isDefaultProfileImage();