-
Notifications
You must be signed in to change notification settings - Fork 57
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Can this be used to add podcast episodes to PowerPress? #48
Comments
Hi @paratechnical, if you look at com.afrozaar.wordpress.wpapi.v2.Client and the So you'll for example use |
Hi @johanmynhardt , what if there is no postid, what if I am creating it now? Do I create it first and then add the meta? Is there a documentation or an example somewhere that I can check out? Thanks |
@paratechnical you can have a look in /src/test/java/com/afrozaar/wordpress/wpapi/v2/ClientLiveIT.java#L358 You do need a post. This is something required by the wordpress REST API. |
@paratechnical that |
@johanmynhardt Do you have any idea why |
It could be a permission issue or the rest endpoint could have an issue. If you initialised the client with debugging enabled, you should be able to see more information about the request and response. |
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;
Can this be done using this java library?
Thank you
The text was updated successfully, but these errors were encountered: