Spring social facebook login error - Numeric value out of range of int

前端 未结 4 1636
闹比i
闹比i 2020-12-11 17:21

I have a problem using Spring Social, when I tried to login to Facebook, I get the following error:

org.springframework.social.facebook.api.User[\"video_uplo         


        
4条回答
  •  旧巷少年郎
    2020-12-11 18:23

    Graph Api documentation says integer, but size response with a long:

    curl "https://graph.facebook.com/v2.5/me?fields=video_upload_limits&access_token=XXX"
    {"video_upload_limits":{"length":3600,"size":2505397589},"id":"1089515813"}
    

    Opened a bug ticket for facebook team to update the documentation: https://developers.facebook.com/bugs/1660757127499390/

提交回复
热议问题