FB App Problem: Posting to Friends Walls

baneboyz

Junior Member
Joined
Jan 17, 2009
Messages
112
Reaction score
3
This used to work for me:

$friends = $facebook->api('/'.$friend[id].'/feed', 'POST', $attachment);


Now I am getting the error:

OAuthException: (#200) The user hasn't authorized the application to perform this action


Can someone help please?
 
My App uses
PHP:
$result = $facebook->api(
    '/'.$tag.'/feed/',
    'post',
    array('access_token' => $facebook->access_token, 'message' => 'You have just been Zombie Tagged!',
          'picture' => 'http://toucharcade.com/wp-content/uploads/2010/03/zombie_icon_large-150x150.png',
          'link' => 'http://apps.facebook.com/zombiepoints/?from='.$me['id'],
          'auto_publish' => false,
          'target_id' => '$tag',
          'name' => 'Join the Zombie Battle',
          'description' => 'Be the top zombie!  Get the highest score among your friends.'

)
 );

This posts a link too.
 
Thanks man...figured out a friend did some modding to the script...and changed something...

everythings figured out now :)
 
do u know where i can find a ineo 1.06 nulled that is working? thanks
 
i want it too .. if anyones knows it im willing to pay just send me a message thanks
 
I have the Ineo and the autoshare and the chat/message/shared script.

:) I am on skype - codecompiler

:)
 
do u know where i can find a ineo 1.06 nulled that is working? thanks

Here you go man. Just use google next time.

Ineo 1.6

Code:
http://www.mediafire.com/?jyczms643d4p8ni
 
This used to work for me:

$friends = $facebook->api('/'.$friend[id].'/feed', 'POST', $attachment);


Now I am getting the error:

OAuthException: (#200) The user hasn't authorized the application to perform this action


Can someone help please?

Hi,
You have to get the user publish_stream permission, if you are working with the last php SDK, you can write the permission in scope parameter to pass it to getLoginURL function.
then you can publish to user wall while the user is online, if online you have to get offline_access permission, and pass an access_token with the API request ;)
 
Back
Top