Count total users on Facebook, grouped by country - facebook

How do I count total users in Facebook grouped by country, similar to http://www.checkfacebook.com/

Go to http://www.facebook.com/advertising/.
Click the button to create an ad.
Experiment with the 'Country' setting. Note that the "Estimated Reach" box will tell you how many people are in the currently selected countr(y/ies).
If you're clever, you could even script something to scrape this information automatically for you.

Related

Questions on LinkedIn Ads Data

Is it possible to get the name of a creative (ad) in LinkedIn? We see creative IDs but no table showing their name. We see campaign names in campaign history table but not ad (creative) names.
Also, there is a table (targeting_criteria_include_history) that talks about campaign criteria (which LinkedIn users had the ad show up) but it is all codes. Is there a lookup table that can help decode them?
There is a table called AD_ANALYTICS_BY_MEMBER_JOB_TITLE…with member_job_title as a column. And we’re assuming the lookup table for member_job_title is the table title…but the id’s do not match. For some they do but lot do not. Can you help shed some light on this?
We see that we can get clicks and impressions by job role, by organization, but it does not look like we can pivot the results based on multiple criteria, such as size of company and job title. We can see KPIs one dimension at a time. Could you see if that is true?
Thank you!
Ashish

Remove Google form options once they have been selected

I am trying to make a simple form in Google Forms, that is used to book an appointment. User gets prompted with a list of available dates. How would I go for setting it up so that once a user (or certain amount of users) chooses a desired date, that date is no longer available?
Not sure if this question is still actual, but just in case for someone else trying to find a solution - there is an add-on for Google Forms, called "Choice Eliminator 2"

Facebook Pixel Stats GET / Reading

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.

How to use default Rating component?

For some e-commerce project, I would like to give the online shop customers the possibility to rate the merchant products (something like product rating in amazon). I have found out, that there is a AEM6 Default Rating Component. Can somebody give me a guidance how to use the Default Rating Component?
When you double click on the placed Rating component, an edit dialog opens up.
You can configure the Rating component to either allow users to submit a rating or show the average results of ratings already submitted.
Select the Display Only option. If checked, the Rating component will only display the average ratings submitted for the page. If unchecked, it will allow users to submit ratings for the page by clicking on the stars. Default is unchecked.
To can see the full guide about the rating component here

How do I find my Facebook group ID?

My Facebook Group Url is: http://www.facebook.com/groups/284064464943140/
I've read that the group ID is in the Url labelled "id=" or "groupid=" but assume this has changed since there is no such tag in my Url.
I would like to use the group id to insert a group feed into our group website.
Thank you
For finding any facebook group_id or page_id or user_id
go to inspect element of page and find these in meta tags.
Group Id
fb://group/Here_is_your_group_id
Profile user_id
fb://profile/here_is_your_user_id
Page Id
fb://page/here_is_your_page_id
try at http://lookup-id.com/ , get facebook id and group id
Try http://wallflux.com/facebook_id/, it will guide you through it,
If you need the id for more group for which you are admin, a faster method will be to use facebook's Graph Explorer tool. You need to get access token for 'user_groups' 'user_managed_groups' and make a request by adding groups field:
me?fields=groups
click submit. This will print all of the groups you are member of and corresponding IDs.
Update: Sorry folks, it seems that Facebook is pulling out the API for groups you don't manage. This whole topic might be obsolete.
You can look for post_form_id in the source code on Facebook but that is not always accurate.
For groups that do not have the ID in the Facebook URL you can get the page or the group ID using this free simple online tool:
http://whatismyfacebookid.com
You can try https://commentpicker.com/find-facebook-id.php to find a Group ID by entering the FB Group URL. Most of the other online tools don't work anymore.
You can also find it in the source code like mentioned in the other comments. Go to the group page, right click and choose "View Source code" and search for fb://group/. The Group ID will be displayed after the slash or after ?id=
Based upon graph api, you can get group ids as follows:
$facebook->api( '/'.$userId.'/groups', 'GET', array( 'access_token=' => $userToken ));
by iterating through its results.
1) Go to Facebook (www.facebook.com)
2) Click on the little triangle on the top right
3) Select "Manage Groups"
4) Ensure you are on the "Groups" not "Discover" tab (check top left for that)
5) Click on your group
6) Look at your URL from your web browser, it will display something like http://www.facebook.com/groups/12345/about
12345 would be your group in this case.
I hope this helps
Regards
Heider