Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I want o create a simple facebook application without any canvas or GUI.I want to access the details of app users,post to their wall,access their friends profile etc,Without their presence i mean access their data's any time.I know only PHP. I am a beginner to Facebook applications.Please guide me.

share|improve this question

closed as not a real question by Kev Jun 4 '12 at 14:33

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

Without any GUI is not totally possible. You will need a method of prompting the user to either:

  1. authorise your app, or
  2. authorise the post to the wall.

Those actions both happen through a gui (web page, remote app etc). Doesn't have to be a webpage, but has to be something that can prompt the user - check out the available APIs for the login. http://developers.facebook.com/docs/authentication/

Once you've got over those hurdles, then it's possible with the tokens, although when tokens become invalid, you'll need to again prompt the user to authorise (back to the gui - and you need to get them to visit/click your link).

share|improve this answer
Can i do all this automatically ?? – Alfred May 31 '12 at 7:05
1  
Nope - you need to develop it. The link above, right near the top, has the APIs that Facebook provide. If you're new to programmming, then select one and run with it. (I'd go with PHP as it's relatively easy [after the first one!] and there's a lot of help around). But you still will need some gui/interface no matter which one you choose. – Robbie May 31 '12 at 7:20
What happen to the tokens after 60 days ? – Alfred May 31 '12 at 10:12
1  
No longer useful - they will fail. There are also a variety of reasons they will fail before 60 days, so you need to test each and every time. – Robbie May 31 '12 at 10:40

Not the answer you're looking for? Browse other questions tagged or ask your own question.