SMS Facebook like count when reaching a threshold -
SMS Facebook like count when reaching a threshold -
i looking way automatically send sms updates when facebook page reaching count. want know when https://www.facebook.com/foodler?ref=stream&fref=nf nearing 100,000 likes automatically via sms. possible?
ok, have break downwards tasks. these 2 separate concerns.
1 track facebook page likesyou can info using facebook's graph api json record. simple phone call (without requiring api key job)
http://graph.facebook.com/foodler/
right now, "likes"
key has value 97542
you can perchance run cron-job or scheduled task (depending on server type/configuration) run script (php/asp/.net, etc.) farther runs api phone call every "x" minutes (or hours or days, whatever wish) , parses "likes" returned. 1 time >= 100,000, can send sms using script.
your script can calling sms gateway's api.
2 sending smsyou need sms gateway (preferably simple api?) doing that. simple google search "sms gateway" returns many leading ones.
facebook facebook-graph-api sms
Comments
Post a Comment