Jump to content

Error Security Policy directive (FB.init in instant game)


SahJ
 Share

Recommended Posts

 

 

 

Hello, I have an instant game, and I want to try to take the user's data to use their token access to be able to consult the api, but an error occurs when I put the script that facebook gives me. Does anyone know a solution? The game I have hosted in the web hosting that gives facebook

        window.fbAsyncInit = function () {
            FB.init({
                appId: 'APP ID',
                cookie: true,
                xfbml: true,
                version: 'v3.1'
            });
            FB.getLoginStatus(function (response) {
                statusChangeCallback(response);
                FB.api('/me', {
                    fields: 'id, name'
                }, function (response) {
                    console.log(response)
                    for (var o in response) {
                        user_data.push.apply(response[o]);
                    }
                    console.log(user_data)
                })
            });
        };

This is error:
error.JPG.8676fc53df20766a74003de4fc718ec6.JPG

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...