I have Pixel installed on my website. My Catalog is updated. Pixel Helper is showing events with a blue check. Event manager is showing all the events with right parameters. Still there are no events in Catalog Manager->Events Tab. My Pixel is connected to the catalog.
Catalog Events:
Check Standard Code on Catalog Event:
Events Manager Showing events:
Pixel Helper Showing Events:
Facebook says that it might take upto 24hrs for the pixel to update or setup. I waited for the given time but still had no events showing but apparently it can take even more time so, I finally started seeing those events in Catalog Manager after 3 days of initial setup.
Related
We are trying to set up custom parameter in Huawei HMS analytics. Using below snippets and configured the parameter ID and Parameter name under Event in Connect.
Bundle bundle = new Bundle();
bundle.putString("exam_difficulty", "high");
bundle.putString("exam_level", "1-1");
bundle.putString("exam_time", "20190520-08");
instance.onEvent("begin_examination", bundle);
Issue is we cant see the event parameter. Please can somebody clear this doubt. Please refer attached screenshot.
If you cannot view the custom parameters of the reported events on the Real-time overview or event analysis page possible cause could may be custom parameters are not added to the Event management page.
Check whether custom parameters of events have been added on the Event management page. To add a custom parameter, go to HUAWEI Analytics > Management > Events. On the Event management page, click Edit, add a custom parameter, and click Add.
For details , please refer to: https://developer.huawei.com/consumer/en/doc/development/HMSCore-Guides/javascript-custom-events-0000001051597159
FYI:
In the data reports (such as event analysis reports and retention analysis reports) of Analytics Kit, the real-time trend is updated in minutes, and all other indicators are updated the next day. After integrating Analytics Kit into your app, view the data reports on the next day.
Meanwhile you can view report to the Real-time overview page within same day . If there is no data displayed on the Real-time overview page , then possible cause could may be the debug mode is not disabled, and therefore the reported event data is displayed on the App debugging page, not the Real-time overview page.
Solution
Check whether debugMode enabled is displayed in local logs. If so, the debug mode is not disabled. Run the following command and try again:
adb shell setprop debug.huawei.hms.analytics.app .none.
For more details , please refer to our FAQ:
https://developer.huawei.com/consumer/en/doc/development/HMSCore-Guides/commissioning-faq-0000001050164019
I have been creating facebook pixels and catalogs for ecommerce sites, the catalogs are connected to the pixels, and they can add, update and remove products automatically. Great.
Problem is I don't understand how the "remove deleted products" feature works.
This is found under the catalog "product data sources", in a connected pixel settings.
*Add New Products (on/off)
*Update Existing Product Info (on/off)
*Remove Deleted Products (on/off)
Add/update is easy enough, when someone views a product page, the pixel fires, and the catalog gets the information.
But the pixel is not tracking or receiving information from our sites backend, it has no way of knowing when we deleted a product.
How would it know?
I've been searching and searching for some kind of documentation describing this feature but am so far empty handed. If someone knows where that is, that would be very helpful.
I've been talking to facebook support and it's just going in circles:
Facebook: (First response after asking how this feature works)
"Thanks for being patient! It looks like that option would be for the Pixel to update any products that have been deleted from your website!"
My reply: "Right, but I was just wondering how it knows a product has been deleted?
As I understand it the pixel updates products as they are viewed on the website, so when a customer goes to a product page, it will add or update this product.
But what triggers a product deletion? "
Facebook: "When you delete the product, that is when it'll start implementing. So when you delete the product that what "triggers" it!"
My reply: "How does it know though? The pixel is not tracking our sites backend when we remove a product.
Does it trigger if a previously existing product page 404's or redirects?"
Facebook: "When you remove that is not deleting when you delete that is when it will start tracking. It will know when you delete the product., it will not trigger if the product 404's or redirects."
I don't even know how to respond to the last one, I don't understand his answer at all.
Please help.
We are currently integrating Facebook Pixel to track some events in our web site.
In the Pixel dashboard we are able to see the events we are sending but we are not
able to see the associated parameters. Could you provide us with a link/guide where we
can see these parameters?
Another doubt we have regards the possibility to have a centralized dashboard for the analytics.
We currently use mobile analytics and we would like to have all the events both from web
and mobile in one place. Is this possible?
I've created a new facebook app called otello_test.
In the settings page I can see an option for mapping Pixels but I can't do nothing with it. When I click on the info button and then click on "Learn More" there is only a redirect page without any type of content.
EDIT:
This is a simple event on my web site
fbq('track', 'AddToCart', {
content_name: 'Really Fast Running Shoes',
content_category: 'Apparel > Accessories > Shoes',
content_ids: ['1234'],
content_type: 'product',
value: 4.99,
currency: 'USD'
});
First of all i can't see any parameter that i've send on my pixel dashboard.
http://imageshack.com/a/img921/6300/gCbzuz.png
Why ?
About the analytics error:
http://imageshack.com/a/img921/9459/up9ZNS.png
As you can see in the settings there is a specific area for mapping pixels but when i click on "Scopri di piĆ¹(Learn More)" there's no documentation available for it.
You can use the Official Chrome extension called Facebook Pixel Helper to help you validate your Facebook Pixel.
To See Event Parameters in Facebook Analytics
Select the "Activity" section in left navigation list.
Select the "Events" section.
Select the Pre-defined or Custom Event you want to view.
You can then either apply a segment on these charts using the "Add a Segment" in the top bar to segment the data displayed by the parameters, or you can select the "Show By" option on the graph and select the parameters to see if they're collecting data.
Omni-channel (Cross Platform) Dashboard/Insights
To have a centralized dashboard for multiple channels (web, mobile, etc.) you would want to set up an Event Source Group. Documentation located here.
How To Set Up an Event Source Group
From the first row of the menu on the left, click on the name of the event source or event source group that is currently displayed.
Click + New Event Source Group.
Select the Business Manager account that you'd like to create your event source group from, then click Continue. Keep in mind that only admins in Business Manager can currently create event source groups.
Name your event source group.
Select the event sources (Web [FB Pixel], App, etc.) to add to this group.
Click Create Group.
You will now be able to see Omni-channel (cross channel) insights in one central view and create dashboards as well.
I have a Facebook Pixel on my website that is tracking events. I saw on the Ads Manager dashboard, that the pixel logs my events in a categorized way, i.e.:
PageView, ViewContent, InitiateCheckout, etc.
Although when logging stats, I include some extra parameters like the product_id maybe or other things, that way when the PageView is being logged, at least I will know which product_id it refers to.
The problem is that the Facebook Ads Dashboard doesn't show any of the extra parameters, it only displays the Count field.
After doing some research, I found this link on Facebook Pixel Stats, where they claim:
Use the Facebook Pixel Stats edge to get pixel statistics.
I tried using the Graph API Explorer, and even the iOS FB SDK for it (API Here) they both return an empty data array:
{
"data": [
]
}
I tried multiple parameter combinations, fields, and everything else to no avail.
If anyone knows whether I'm looking at the wrong place, or what not, all I'm interested in is reading those "extra" parameters that I'm appending to every FB Pixel event I log. Thank you!
You need specifing the parameters for it.
Example:
{fb_pixel_id}/stats?aggregation=url
The answer is displayed for a specific period of time in the past - I would say 24 hours.
You can use paging at the bottom of the json response for going back in time: use the link provided in the content of the field 'previous', and you can step back day by day.
I am trying to access past event via Facebook's Graph API.
I am getting current events just right (the one I attended last month and the one in the future) with
https://graph.facebook.com/me/events?access_token=[ACCESS_TOKEN]
However, the paging components "previous" and "next" don't really work, "previous" actually points to a future event that's already been listed in "me/events". While "next" just returns an empty "data" struct.
I also tried "since" with different previous timestamps (such as "me/events?since=1304238280") and it didn't work, it will always return the events that are the same as the ones returned by "me/events". But I definitely have many more past events when I visit
https://www.facebook.com/events/past/
Am I not using the graph API correctly or what? I also noticed there are quite a few questions regarding Graph API's paging problem but there doesn't seem to be a definitive answer yet.
Any info/suggestion/reference would be greatly appreciated!
From what I've seen, it appears that about two weeks after an event ends, Facebook moves the event data out of the events table and into another one that isn't exposed via the API. The internal Facebook servers have access to this table, so you can see past events from within the Facebook webapp.
I'm assuming this is a privacy thing.
try to add the "before" query string with the ID of the first event ex:https://graph.facebook.com/me/events?&before=388551911259170.
you can refer to the following link: https://developers.facebook.com/docs/reference/api/pagination/