In my app I'm connecting to Facebook and can post image to it. I'm using FB Android API 3.0.
Now, I've found a bug in situation when I run my app, on the phone with FB app installed and authorized, and no Internet connectivity.
When I click Login to FB first time, as the FB app exists and it is authorized, My app figures out that it will communicate with FB through the app, and it is kind a "logged in".
This enables me to share on facebook, and when I click "share" my app sends share to FB app, but as there is no internet connectivity App crashes.
So, what's the proper way to do this.
I plan to implement pre-share check for
ConnectivityManager cm = (ConnectivityManager) getSystemService(Context.CONNECTIVITY_SERVICE);
But I'm not sure this is enough, because If the network is there but very bad, I can get correct information that there is Connectivity, and when the share starts it could again crash the app.
Is there a way to somehow get response from FB App that there is no internet connectivity and handle the message somehow?