FriendsOfSymfony / FOSFacebookBundle

NOT MAINTAINED - see https://github.com/hwi/HWIOAuthBundle
322 stars 140 forks source link

Fileupload not working #95

Open stoefln opened 12 years ago

stoefln commented 12 years ago

As lined on StackOverflow [1], a parameter "fileUpload" has to be set to true, to enable fileUploads. As far as I see this is not implemented yet.

[1] http://stackoverflow.com/a/4245260/457059

leek commented 12 years ago

This doesn't really have anything to do with this bundle, if you want file upload support - then just set it on your Facebook API class instance.

<?php
// ...
$container->get('fos_facebook.api')->setFileUploadSupport(true);
stoefln commented 12 years ago

Oh- did not know that this is possible. Maybe put it into the documentation?