How to write specific application for facebook? [closed] - facebook

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 5 years ago.
Improve this question
Please help me with documentation to write specific application for Facebook.
Need to know, what language to choose? is specific facebook API? is documentation for API? is site with samples catalogue? need to know all related info. Some words about app, it would be app, which compare users interests.
Thanks in advance.

You can use pretty much any language, with PHP being one of the most popular ones (after all, Facebook was written in PHP). In order to get started, check out one of the following introductory articles on Facebook app development.
Intros
HOWTO: Create a Facebook App with Google App Engine and Best Buy Remix
How to Write Your Own Facebook App in 5 Minutes
How To Build A Facebook Application
Facebook docs
Facebook Dev Documentation
Facebook Developer Group
Build the social and personalized web.
Other useful stuff
Monetizing Facebook applications

http://developers.facebook.com/docs/
(first result when googling "facebook development api")

Related

What are the programming languages for stalking facebook friends [closed]

Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 4 years ago.
Improve this question
I would like your guidance. Could you suggest me a programming languages capable of monitoring my Facebook friends activity?
By activity I mean:
Know when they get online
Know when they post something
Know which are my friends that contribute more in likes/comments in my profile in the last X hour
I could think of following two ways:
You will need to use Facebook Graph API to monitor posts by user https://developers.facebook.com/docs/graph-api/reference/v3.0/post. But for that, the user should give permission to your app or the post should be public. Graph API SDK is available for PHP, Javascript, Android, and IOS.
Another way I could think is by using automation testing tool like Selenium. Selenium is available in Java, C#, Ruby, Python, and Javascript. You will need to write Selenium code to open Facebook, log in to your account and check the status of your friends. To do this you will need to either keep your system running or use a headless browser and host it on a server.
I hope you are not doing this to spam or annoy people on Facebook.

API to share to all social media on one click [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
I am working on an application,which allows the user to share his promos(promos are daily deals) to all social media in a single click.That is I want to connect his FB,twitter and Linkedin accounts and authorize once and later he can share it to his FB,twitter,linkkedin with a single share button and a message fiels to add custom messg.
Tried to find something online but there are only individual plugins which are mostly for login and not for connect.These sites hootsuite and buffer app have this feature but they dont provide it for third party apps.
Can anyone point to a library that has this feature to connect all the social media and then post to the user wall?
you can use shareholic api to share content across all social media.
https://shareaholic.com/api
There is no library, you have to program that on your own by using all the APIs of those Social Networks - which is what Hootsuite does. That´s why you have to authorize the Hootsuite App to make this work.
https://developers.facebook.com/docs
https://dev.twitter.com/
https://developers.google.com/+/api/
https://developer.linkedin.com/

to search people by photo in facebook ( using face recognition ) [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
I am currently working onto a simple image search engine project (going on similarlity search) . Working onto the project, my partner asked with an concept of search people by photo in facebook . SO , i think implementing these concepts into our project would be quite interesting . This cant be a security issue , since at least profile pictures are public .
So , i am here with a question :: Is there any already available api or web service or any software tool that could return result using facebook face recognition by processing the images on facebook store, if the given input is any image of a particular facebook user (which may not in fb store ).
if possible , i would prefer coding in php ,python or java ...........
Or at least hints are always encouraged!!!
By the way ,never mind on language please!!!
Some good APIs for Face Recognition and Feature Detection (Mood, Glasses, ...):
http://skybiometry.com/ (5000 calls/month free)
http://www.faceplusplus.com/ (currently free)
for any Facebook related. you should have to use Facebook API.
They are providing.
Check the Facebook Documentation and gone through this.

Post to Wordpress from Facebook [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
Improve this question
I've got a client who is more familiar and confident with the facebook intefrace and would like have her posts from Facebook Business page be autoposted on her Wordpress blog.
Any hints on how to achieve this.
I understand the benefits of getting her using Worpress, but at this stage the lack of WYSIWYG in the WordPress app is holding her back.
Any suggestions of plugins to take Facebook posts to Wordpress would be appreciated.
Facebook does not yet provide real-time updates for stream posts on pages, so you'll need to do something like this:
Set up a cron job to call a script on schedule (once per hour or day probably) that:
Makes an API call to her page's feed to see if any new posts were made since the last poll.
If data is returned, loop through the results and create a new WP post for each FB post.
Just make sure there aren't any plugins installed on WP that autopost to FB.
I haven't ever seen a plugin like this before. There are some plugins out there that make editing Wordpress more user-friendly like Front End Editor. This might be a better solution.
get the rss feed url of your fb page and put it into the feedwordpress plugin

How to share information to facebook and twitter? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 4 years ago.
Improve this question
I'd like to integrate the app with facebook and twitter. I.e. when the game is over, the user can click the 'share' button, then login facebook/twitter in the app, share the record in his wall after login dialog.
two questions:
1. Shall I apply the API key for both facebook and twitter, for my app?
2. Since this feature shall be common for most apps, do you have any experiences on it? Or is there any shared library that can be used?
Look at ShareKit, that helps sharing content across various social networks. Haven't tried it myself but heard a lot about it.
For Facebook you can also use the official FacebookAPI lib.
You can find the below link that will help you.
http://getsharekit.com/
http://getsharekit.com/install/#download
https://github.com/ideashower/sharekit/
This above link its help you.
If you just plan to link to Twitter and FB Sharekit might be a bit too much.
Facebook integration is easy, just follow the tutorial on FB developpers site:
http://developers.facebook.com/docs/guides/mobile/
For Twitter, I think that best think to do is rely on iOS native support that will be available in iOS 5 (details under NDA).