2012-06-15 151 views
0

在Perl我使用的Facebook ::圖形API張貼在用戶壁作爲我有張貼aceess令牌和滑動消息正在Facebook的圖形API張貼照片上壁在Perl

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; 

這裏消息與圖片,但我需要的是,而不是給set_picture_uri鏈接我想從本地上傳文件。可能嗎。

回答

0

您可能需要自行構建一些上傳文件。

但我認爲Facebook可能有API要求用戶上傳文件。