Facebook API

Sancheck

Legendäres Mitglied
Wenn ich auf Facebook 3 Bilder hochlade, dann fasst facebook die 3 Nachrichten zusammen, und zeigt nur die thumbnails, wer hat eine Idee, wie man das lösen könnte?

Ich will das Bild direkt auf der Seite haben!

if($img1 != '' && isset($fields['facebookHasPicUpload']) && $fields['facebookHasPicUpload']){

$facebook->setFileUploadSupport(true);

$img1RealPath = getImageRealPath($img1);

$fbType = 'photos';

$fbConfig = array('source' => '@'.$img1RealPath, 'message' => $fbConfig['message']);

}

$error = '';

try{

$facebookRet = $facebook->api('/'.$facebookUser->facebookId.'/'.$fbType, 'post', $fbConfig);
 
Zurück
Oben