(I don't have enough rep to comment, so re-answering)
As Tass's answer says, SSL aims to prevent both passive and active eavesdropping. Thwarting passive eavesdropping is fairly simple to accomplish - unauthenticated Diffie-Hellman key agreement will do the trick. An active attack is a bit harder to deal with since they could just pretend to be the server to the client and vice-versa allowing them to proxy all traffic. Certificates address this by providing a means of establishing identity of one or both parties in a way that an active attacker cannot (in theory) spoof.
MitM attacks are not limited to WiFi networks. If your server is on a subnet with other servers (it probably is), someone with access to a machine in the same subnet could do an ARP spoofing attack to intercept all traffic between your server and the router. Anyone with access to your ISP's network gear could also do a MitM - do you trust your ISP to never get hacked? Finally, there are ASN hijack attacks where someone could intercept all traffic in and out of facebook and do what they please with it.
Realistically, if you disable certificate validation, it's unlikely that anything bad will happen. It's also unlikely that anything bad will happen if drive without a seatbelt or ride a bicycle without a helmet. Is saving a millisecond or two per request worth it?