Jetpack Publicize and Android
At this time, there’s no way other than logging in to the backend of your site from your mobile device. This currently doesn’t work on the iOS WordPress app either.
At this time, there’s no way other than logging in to the backend of your site from your mobile device. This currently doesn’t work on the iOS WordPress app either.
It’s possible to write your own endpoing using add_rewrite_rule(). In this case, we’ll register the endpoint http://example.com/api/user_data/{id}. Then check to make sure the ID is numeric. If it is, lookup the user by id and output the JSON response. URL http://example.com/api/user_data/1 JSON { “success”: true, “data”: { “id”: 1, “display_name”: “your_username”, “user_registered”: “2015-11-12 05:00:00”, “first”: … Read more
These days it is not really possible anymore to distinguish between mobile and other browsers, but you may try wp_is_mobile. There are plugins that try to do a better job. Then, if the user agent is mobile you may try to disable saving of the image, but there is no definite way to do this. … Read more
Out of the box there is no mechanism for a user to login via the REST API to begin a session without pre-configured access. WordPress Core provides 2 authentication methods for the REST API: cookies + nonces application passwords Likewise there is no mechanism for registering for an account via the REST API, user creation … Read more
Submit comment via JSON from Android device
best way for app users to submit blog post?
First of all, it is not the fault of AndroidNetworking, it is the permission denied, which I figured out after testing Retrofit, Retrofit throws the error for the permission denied which led me to fix the problem. I checked above code after fixing the permission and it works very well. Thank you PS. There is … Read more
I am afraid this is just an issue with the application, not with your wordpress installation. I suppose that could be good or bad news. Regardless, I would suggest that you submit the bug to the application developers because if you are running into this problem, the chances are so are several other people, though … Read more
If you just add a player to the blog maybe in custom temple(page) you can just use an ajax comments plugin and have the DJ have the comments stream open think about using http://disqus.com/
New users CAN be allowed to register remotely without setting “anyone can register” in “general/settings”. The client is android and in addition to the android java client code using the ‘org.xmlrpc library’, the following was added to ‘functions.php’ in the child theme: function xml_add_method( $methods ) { $methods[‘xxx.wp_create_user’] = ‘xxx_wp_create_user’; return $methods; } add_filter( ‘xmlrpc_methods’, … Read more