Masha  Popugaeva
Masha Popugaeva

Reputation: 9

Unity3d official sdk FB.UI

In the documentation there is a page describing this method: FB.UI

I downloaded this plugin, there are other methods like FB.AppRequest, FB.Init, FB.Feed, But no FB.UI. Isn't it implemented yet?

Upvotes: 0

Views: 675

Answers (1)

aaron
aaron

Reputation: 1796

FB.UI is very canvas specific and is also redundant with other calls in the SDK, it supports the following dialogs on canvas:

  • The Feed Dialog: FB.Feed
  • The OAuth Dialog: Call FB.Login with the permissions you want. Even once a user is logged in, just call FB.Login again if you want new permissions.
  • The Friends/Request Dialog: FB.AppRequest
  • The Pay Dialog: FB.Canvas.Pay (canvas only)
  • The Send Dialog: not supported
  • Add Page Tab Dialog: not supported

The not supported options can still be accessed by calling out to javascript on canvas.

Upvotes: 1

Related Questions