https://forum.blubrry.com/index.php?topic=3466.0
I read here that you need to add information to custom fields in order to do this
`$enclosure_value = $row['url'];
$enclosure_value .= "\n";
$enclosure_value .= $row['size'];
$enclosure_value .= "\n";
$enclosure_value .= $type;
$content['title'] = $title;
$content['description'] = $body;
$content['categories'] = array("Meetings");
/*Pass custom fields*/
$content['custom_fields'] = array(
array( 'key' => 'enclosure', 'value' => $enclosure_value )
);`
Can this be done using this java library?
Thank you