Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/yujinlim/facebook-page-stats
facebook page fan stats by country
https://github.com/yujinlim/facebook-page-stats
Last synced: 15 days ago
JSON representation
facebook page fan stats by country
- Host: GitHub
- URL: https://github.com/yujinlim/facebook-page-stats
- Owner: yujinlim
- Created: 2015-08-19T03:43:25.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-11-27T07:49:40.000Z (about 9 years ago)
- Last Synced: 2024-12-21T14:05:50.849Z (23 days ago)
- Language: JavaScript
- Size: 3.91 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# Facebook Page Fan Stats [![Build Status](https://travis-ci.org/yujinlim/facebook-page-stats.svg)](https://travis-ci.org/yujinlim/facebook-page-stats)
> get facebook page fans stats by country## Usage
```
npm i --save facebook-page-stats
``````javascript
var stats = require('facebook-page-stats');stats(token, pageId)
.then(function(result) {
// results from fans stats
});
```## Sample response
```javascript
{
'United States': 3778,
Malaysia: 1303,
Spain: 533,
'United Arab Emirates': 377,
Indonesia: 322,
Qatar: 271,
'United Kingdom': 259,
Netherlands: 167,
Germany: 100,
Australia: 78,
France: 76,
Philippines: 76,
India: 23,
Singapore: 18,
Pakistan: 18,
Romania: 17,
Iceland: 16,
Bangladesh: 13,
Mexico: 11,
Thailand: 8,
Algeria: 8,
Italy: 8,
Canada: 7,
Syria: 5,
Myanmar: 5,
Sweden: 5,
Switzerland: 5,
Egypt: 5,
Colombia: 5,
Morocco: 4,
Croatia: 4,
'Korea, Republic of': 4,
Hungary: 4,
undefined: 4,
Turkey: 4,
Poland: 4,
Ghana: 3,
Greece: 3,
'Sri Lanka': 3,
Brazil: 3,
Nepal: 3,
Japan: 3,
Libya: 3,
Bulgaria: 3,
Israel: 3
}
```## Options
### `stats(token, pageId)`
return facebook page stats by country#### token *(required)*
facebook api token
Type: `String`#### pageId *(required)*
facebook page id
Type: `String`## License
MIT © [Yu Jin Lim](https://github.com/yujinlim)