FBSDK using SDKBOX problem in IOS using Cocos Creator

I follow the guild in https://docs.sdkbox.com/en/plugins/facebook/v3-js/
when i build to native and run in simulation i get error like this
ERROR: ReferenceError: Can’t find variable: FB, location: ::
STACK:
loginFacebook@src/project.js:7825:29
emit@src/cocos2d-jsb.js:15225:8
emitEvents@src/cocos2d-jsb.js:15212:49
_onTouchEnded@src/cocos2d-jsb.js:14846:37
src/cocos2d-jsb.js:31073:11
nt@src/cocos2d-jsb.js:8668:85
dispatchEvent@src/cocos2d-jsb.js:9463:3
J@src/cocos2d-jsb.js:8571:16
_onTouchEventCallback@src/cocos2d-jsb.js:21273:33
_dispatchEventToListeners@src/cocos2d-jsb.js:21350:115
_dispatchTouchEvent@src/cocos2d-jsb.js:21306:31
dispatchEvent@src/cocos2d-jsb.js:21525:25
handleTouchesEnd@src/cocos2d-jsb.js:29316:16
touchend@src/cocos2d-jsb.js:29485:19
src/cocos2d-jsb.js:29497:2
dispatchEvent@jsb-adapter/jsb-builtin.js:3057:29
jsb-adapter/jsb-builtin.js:3098:27

Here is my init() function in js

cc.log("isMobile");
        console.log("main init facebook");
        if(!!sdkbox) console.log("sdk found -------");
        sdkbox.PluginFacebook.init();
        sdkbox.PluginFacebook.setListener({
            onLogin: function(isLogin, msg) {
                if (isLogin) {
                    console.log('---------------FBLOGINED----------------');
                    console.log(msg);
                }
            },
            onAPI: function(tag, data) {},
            onSharedSuccess: function(data) {},
            onSharedFailed: function(data) {},
            onSharedCancel: function() {},
            onPermission: function(isLogin, msg) {}
        });

I revice all the log but facebooksdk is not init;
JS: main init facebook
JS: sdk found -------

i need some help, thanks for you guys

We can ask @yinjimmy to read this thread.

@slackmoehrle
I am facing some issues with SDKbox integration to cocos creator, there is no proper tutorial given anywhere.
can you help me providing some tutorial or example projects?

@Yathiraj_karkera the only resource that I know of are:

http://docs.sdkbox.com/en/qa/cocos_creator/

http://docs.sdkbox.com/en/qa/integration-admob-to-creator/

the link is in the end of Facebook - SDKBOX

sorry for so long to reply, thanks you all for commend ill take a look <3