You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When an app_scoped user_id in a post-Facebook graph 2.0 world exceeds 2^53 (9007199254740992), the id values contained in the Result map[string]interface{} begin to lose their bottom-most bits due to mantissa truncation.
When an app_scoped user_id in a post-Facebook graph 2.0 world exceeds 2^53 (9007199254740992), the id values contained in the
Result map[string]interface{}
begin to lose their bottom-most bits due to mantissa truncation.The quick solution in result.go is to use
rather than using json.Unmarshal(&res)
The text was updated successfully, but these errors were encountered: