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.

in perl i am using Facebook::Graph api to post on user wall as i am having aceess token and plain message is working

my $fb = Facebook::Graph->new(
    app_id          => $app_id,
    secret          => $secret,
        );

        $fb->access_token( $access_token );



      $fb->add_post
         ->set_message($message)
         ->set_picture_uri("http://st.pimg.net/perlweb/images/lcamel.vcf3914e.gif")
         ->publish;

here message is posted with picture but what i need is instead of giving link in set_picture_uri i want to upload a file from local. Is it possible.

Thanks.

share|improve this question

1 Answer

you probably need to build something on your own to upload file.

But I assume Facebook might have API that asks for user to upload the file.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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