有没有办法放置一个跟踪像素来判断用户在粉丝页面(而不是外部网站)上喜欢粉丝页面时是否转换为粉丝?
在这种情况下,他们将被直接定向到粉丝页面,如果他们点击“喜欢”按钮,我们就可以将其视为转化。有人提到旧的静态 FBML 应用程序您可能可以做到这一点,但现在这个功能已经消失了。我们正在寻找最简单的解决方案,但如果需要的话可以深入技术。
谢谢
is there a way to place a tracking pixel to tell if a user converted to a fan when the like the fan page when they are on the fan page (not on an external site)?
In this situation they would be directed directly to a fan page where if they clicked the like button we would could this as a conversion. Someone mentioned with the old Static FBML app you may be able to do this but now this if gone. We're looking for the easiest solution but can go as deeply technical if needed.
thanks
发布评论
评论(3)
您可以订阅 edge.create 以查看他们是否单击了 XFBML Like 按钮,或者您可以解析签名的请求以查看他们是否已经喜欢该页面。
但这些都无法衡量您想要的东西。
如果您需要跟踪选项卡 iFrame 外部“赞”按钮的转化,则必须执行以下操作:
impression
之类的 cookie。此处签名的请求文档
https://developers.facebook.com/docs/authentication/signed_request/
$signed_request['page']['liked']
是感兴趣的值。You can subscribe to edge.create to see if they clicked an XFBML Like button, or you can parse the signed request to see if they've already liked the page.
Neither of these measure what you want though.
If you need to track conversions from the Like button outside your tab's iFrame, you'll have to do the following:
impression
or something.Signed request docs here
https://developers.facebook.com/docs/authentication/signed_request/
$signed_request['page']['liked']
is the value of interest.您可以使用 Event.subscribe 来单击“赞”按钮:
每次用户单击“赞”按钮时都会执行该函数。
在回调函数中,您将获得“点赞”按钮的 href,如果需要,您可以检查以确保这是正确的“点赞”按钮。
您还可以使用:edge.remove 取消喜欢该页面。
这是官方 FB 文档: http://developers.facebook.com /docs/reference/javascript/FB.Event.subscribe/
You can use an Event.subscribe for clicking the like button:
The function will be executed every time the user clicks a Like button.
In the callback function you will have the href of the like button and if neccery you can check to make sure that is the right like button.
You can use also: edge.remove for unliking the page.
Here is the official FB documentation: http://developers.facebook.com/docs/reference/javascript/FB.Event.subscribe/
您可以通过检查签名请求“页面”属性来判断某人是否是选项卡应用程序中页面的粉丝。有关签名请求的详细信息,请参见:https://developers.facebook.com/docs/authentication/signed_request /
人们可能已经提到过,FBML 中也提供了此功能。
澄清一下,您如何将用户发送到粉丝页面?如果您通过 Facebook 广告将他们发送到页面,那么广告洞察将为您提供有关点击页面广告的用户最终喜欢该页面的信息。
You can tell if someone is a fan of the page in a Tab app by inspecting the Signed Request "page" property. Details on the signed request here: https://developers.facebook.com/docs/authentication/signed_request/
This was also available in FBML which people may have been referring to.
Just to clarify, how are you sending the user to the Fan page? If you are sending them to the page via a Facebook ad then the Ad insights will give you information on how many users who clicked on the Page ad ended up liking the page.