Reputation:
yesterday I Include the Facebook SDK for JavaScript in my Web Page (here is the code https://developers.facebook.com/docs/analytics/quickstart-list/web with the ID of my application )
anyway, I want to see some data on the panel, but it does not show me anything. Just this default message: "Once you start logging events, this overview will give you a summary of how people are using your app or website. You'll be able to see data like sessions, active users, purchases, demographics and more."
see a print screen here https://snag.gy/9tZkT7.jpg
I believe it about Creating events, I don'w know how to do this. Can anyone help me step by step?
Upvotes: 0
Views: 1038
Reputation: 74014
FB.init({
appId : '{214793561804710}',
xfbml : true,
version : 'v3.0'
});
This is wrong, do not use the brackets from the docs. The Id is just a string:
FB.init({
appId : '214793561804710',
xfbml : true,
version : 'v3.0'
});
After changing that and hitting your URL, wait 20min and check out Activity > Event Debugging
in the App Settings.
Upvotes: 1