When I first tried to access Facebook API operations after integrating Facebook Connect with Tersus, I received the error messages Invalid Enumeration Value and Handler already exists.
It was discovered that the source of the problem was
object.x === undefined
When there is no property 'x' in 'object,' returns false.
I solved the problem by substituting normal equality for rigorous equality in two Facebook functions:
FB.Sys.isUndefined = function(o) { return ...READ MORE
Dec 9, 2022
in Java
by
Nicholas
• 7,760 points
•
479 views