angular-facebook
angular-facebook copied to clipboard
[question] how to set the facebook api version?
how to set the v2.12 or other?
@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