angular-facebook icon indicating copy to clipboard operation
angular-facebook copied to clipboard

[question] how to set the facebook api version?

Open joneldiablo opened this issue 8 years ago • 1 comments

how to set the v2.12 or other?

joneldiablo avatar Feb 21 '18 19:02 joneldiablo

@joneldiablo It's an old question, but just in case someone got here:

angular
  .module("fbgamesApp", [
    "facebook"
  ])
  .config([
    "FacebookProvider",
    function(FacebookProvider) {
      FacebookProvider.init({ appId: "XXXXX", version: "v3.0" });
    }
  ]);

pd: always read the source code, answers are there most of the times

fxckdead avatar May 12 '18 20:05 fxckdead