Upload image with facebook API

前端 未结 4 1327
终归单人心
终归单人心 2020-12-18 15:27

Question: How to upload an image from my webserver to facebook via FB API?

I\'m writing an application that retrieves images from the user\'s photo album, makes some

4条回答
  •  一向
    一向 (楼主)
    2020-12-18 16:02

    I think you are doing it all wrong Look at my code

    $appapikey = 'keykeykey';
    $appsecret = 'secretcesret';
    $facebook = new Facebook($appapikey, $appsecret);
    $user=$facebook->require_login()
    
    $facebook->api_client->photos_upload($file, null, "A test Photo", $user);
    

    This works for me

提交回复
热议问题