[SOLVED]Share plugin error "FB Dialog share need fb app"

I install and configure share and facebook plugins, Both works just fine separately. Twitter works, and facebook dialog doest it. But when i try to do use facebook sharing via share pluggin like this it gets this confusing error “FB Dialog share need fb app”

sdkbox::SocialShareInfo share;
share.platform = sdkbox::SocialPlatform::Platform_Facebook;
share.title = "app";
share.text = "Test";
share.link = "http://www.sdkbox.com";
share.showDialog = true;
sdkbox::PluginShare::share(share);
return;

More over if i just share.showDialog = false; it works okay, but without any confirmation on sharing. So facebook is definetly connected to share plugin. Maybe that kind of share used additional configs into developers.facebook.com/apps or even not just android app? So question is “Is it some kind of bug into share plugin? or am i doing something wrong?”.

Thats my sdkbox_config.json, may be it help.

"Facebook": {"app_id": "xxxxx"},
"Share":
{
   "platforms":
   {
      "Twitter": {"params": {"secret": "xxx", "key": "xxx"}},
      "Facebook": {"params": {"app_id": "xxxxx"}}
   }
}

So that error log means that if you want to pop up a share dialog, user need to install facebook app.

Ok thanks for reply.