FB API PHP curl_setopt_array (): O uso da API @filename para o upload de arquivos foi preterido
Tem um problema com FB PHP API e php 5.5 com o upload de foto para o servidor. Ao usar o método:
private function _upload( $type = '', $path = '', $message = '', $aid = '' ) {
try {
if ( !in_array( $type, array( 'photos', 'videos' ) ) ) {
throw new \Exception( 'Error: Incorrect type ' );
}
if ( !self::getFB()->getUser() ) {
throw new \Exception( 'Error: No user' );
}
if ( empty( $path ) ) {
throw new \Exception( 'Error: path is empty' );
}
if ( !file_exists( realpath( $path ) ) ) {
throw new \Exception( 'Error: file doesn\'t exists' );
}
if ( !empty( $aid ) ) {
$url = "/" . $aid . "/" . $type;
} else {
$url = '/' . self::getFB()->getUser() . '/' . $type;
}
var_dump( array( $url, 'POST',
array(
'image' => '@' . realpath( $path ),
'message' => $message,
)
)
);
self::getFB()->setFileUploadSupport( TRUE );
$ret_obj = self::getFB()->api( $url, 'POST', array(
'image' => '@' . realpath( $path ),
'message' => $message,
)
);
return $ret_obj[ 'id' ];
} catch ( \Exception $e ) {
return $e->getMessage();
}
}
Eu recebo error: curl_setopt_array (): O uso da API @filename para upload de arquivos está obsoleto. Por favor use a classe CURLFile