Hi i'm new to facebook sharing. I want to make a user log in using his uid and then store these for further uses

The primary purpose is to share links in the user's wall

next time onwards without showing the facebook window i want to post in to his wall through ajax.

How is it possible any help regarding this will be appreciated!

EDIT

I used the example given and then tried curl function

got this error

HTTP/1.1 403 Forbidden
Cache-Control: no-store
Content-Type: text/javascript; charset=UTF-8
Expires: Sat, 01 Jan 2000 00:00:00 GMT
P3P: CP="Facebook does not have a P3P policy. Learn why here: http://fb.me/p3p"
Pragma: no-cache
WWW-Authenticate: OAuth "Facebook Platform" "insufficient_scope" "(#200) 
This API call requires a valid app_id."
Set-Cookie: datr=g4JBTb4OsRZxBAztV7iIkpWg; expires=Sat, 26-Jan-2013 14:34:43 GMT;
path=/; domain=.facebook.com; httponly
X-Cnection: close
Date: Thu, 27 Jan 2011 14:34:43 GMT
Content-Length: 93

{"error":{"type":"OAuthException","message":"(#200) 
This API call requires a valid app_id."}}

EDIT SO THAT SOMEONE MAY FIND USEFUL

FACEBOOK CONNECTION

$facebook_connect =  array(
   'appId'  => 'YOUR APP_ID',
   'secret' => 'YOUR SEC KEY',
          'access_token'=>"USER'S ACCESS TOKEN",
   'cookie' => true
 );

POST TO USER WALL

$facebook->api("/PROFILE_ID/feed", "post", array(
"message"=>"Hi Friends Join ****",
"name"=>"You're invited to join ****!",
"link"=>"www.****.com",
"description"=>"Great site",
"picture"=>"http://www.****.com/logo.jpg",
"caption"=>"Join *****"
)
link|improve this question

77% accept rate
feedback

1 Answer

up vote 20 down vote accepted

I suggest you start learning how Facebook Graph API works first.

  1. Facebook will NEVER share the user password with you!
  2. If you just need to give the user the possibility to share link, then just use the like plugin. You may also find more interesting social plugins to use in your website.
  3. If you use the like plugin, it won't open any popups and it would post the link directly to the user's wall.
  4. You could always use the Feed Dialog
  5. Start reading the Facebook Documentation

Now to post on the user's wall (on his behalf) without him being logged-in, you need the following:

Permissions:
publish_stream - Only this permission is needed, NO NEED for the offline_access permission:

Enables your app to post content, comments, and likes to a user's stream and to the streams of the user's friends. With this permission, you can publish content to a user's feed at any time, without requiring offline_access. However, please note that Facebook recommends a user-initiated sharing model.

Require the permission:
This can be done in multiple of ways:
Using the Login Plugin:

<fb:login-button show-faces="true" width="200" max-rows="1" perms="publish_stream"></fb:login-button>

Using the scope parameter:

https://www.facebook.com/dialog/oauth?
     client_id=YOUR_APP_ID&redirect_uri=YOUR_URL&scope=publish_stream

PHP-SDK:

$loginUrl = $facebook->getLoginUrl(array("scope"=>"publish_stream"));

JS-SDK through the FB.login method:

 FB.login(function(response) {
   if (response.authResponse) {
     console.log('Welcome!  Fetching your information.... ');
     FB.api('/me', function(response) {
       console.log('Good to see you, ' + response.name + '.');
       FB.logout(function(response) {
         console.log('Logged out.');
       });
     });
   } else {
     console.log('User cancelled login or did not fully authorize.');
   }
 }, {scope: 'publish_stream'});

OAuth Dialog:

http://www.facebook.com/dialog/oauth/?
  scope=publish_stream&
  client_id=APP_ID&
  redirect_uri=REDIRECT_URL_HERE&
  response_type=token

Publishing:

$USER_ID = "XXXXXXXX"; // Connected once to your APP and not necessary logged-in at the moment
$args = array(
    'message'   => 'Hello from app',
    'link'      => 'http://www.masteringapi.com/',
    'caption'   => 'Visit MasteringAPI.com For Facebook API Tutorials!'
);
$post_id = $facebook->api("/$USER_ID/feed", "post", $args);

Notes:

  1. NO NEED for the offline_access permission. Please refer to the comments on this answer
  2. While it's possible to post without the user's presence always remember Facebook recommends a user-initiated sharing model
link|improve this answer
sorry i typed like that what i want is offline access to a user's acount so that i can post to his account evan if he is not logged in!edited the question – Harish Jan 27 '11 at 12:34
@Harish: what server side language are you using? PHP? – ifaour Jan 27 '11 at 12:50
php yes offcourse ! – Harish Jan 27 '11 at 12:50
thanks i'll try that and reply – Harish Jan 27 '11 at 13:50
2  
Ah, sorry you are using offline_access then yeah you need to specify the access_token as part of the post array! – ifaour Jan 28 '11 at 9:28
show 8 more comments
feedback

Your Answer

 
or
required, but never shown

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