I am writing an app using Unity and want to share some message in the App by using facebook api. The code is pretty straightforwards:
FB.Init();
...
FB.ShareLink(
new Uri("https://www.example.com"),
"Checkout my awesome score!",
"I reached level 100!",
null,
callback);
But get this error message:
com.facebook.http.protocol.ApiException: [code] 100 [message]:
Unsupported get request. Please read the Graph API documentation at
https://developers.facebook.com/docs/graph-api [extra]:
at com.facebook.http.protocol.ApiResponseChecker.a(seek time = %s:153)
...
Found this link: Unsupported get request in Facebook Graph API. I fixed all the restrictions, but still it's not working. One caveat is that the app is not launched in Play store, it does complain when I set up the app in FB developer console:
There was a problem verifying the package name com.xxx.xx on Google Play.
Please check the package name and try again.
If your app isn't listed publicly on Google Play yet you can ignore this message.
Not sure if that could be the reason?