zeusent
Forum Replies Created
-
Forum: Plugins
In reply to: [Stop User Enumeration] Conflict with Simple JWT Login pluginThanks for your fast replies! I appreciate it!
We’ve already suggested to our client to turn off that particular setting for now. He is reluctant to do so as that defeats the purpose of the plugin in a sense ??
Will keep an eye out for your update.
Thanks!
Forum: Plugins
In reply to: [Stop User Enumeration] Conflict with Simple JWT Login pluginHere’s an example of what an app might send to this particular endpoint:
curl "https://somedomain.com/wp-json/simple-jwt-login/v1/users" \
-X POST \
-H 'Accept: application/json' \
-H 'Content-Type: application/json' \
-d '{"email":"[email protected]","password":"test!321","display_name":"Test"}'And it’s response:
{
"success" : true,
"id" : "41",
"message" : "User was successfully created.",
"roles" : [
"subscriber"
],
"jwt" : "{some_jwt_token}",
"user" : {
"user_registered" : "2024-06-10 16:08:20",
"user_activation_key" : "",
"user_nicename" : "stop-userenumeration-com",
"user_status" : "0",
"user_url" : "",
"user_email" : "[email protected]",
"display_name" : "Test",
"ID" : "41",
"user_login" : "[email protected]"
}
}Forum: Plugins
In reply to: [JSON API] Method get_post redirects to post's pageActually… This doesn’t work… If I do that the API returns the latest article only :-s
Here’s an example:
https://es-factory.nl/blog/api/get_posts/?id=4110&count=1
And to proove that the article exits:
Forum: Plugins
In reply to: [JSON API] Method get_post redirects to post's pageHa! ?? Not sure how I’ve missed that ?? But that seems to do the trick! ??
Thanks!
Forum: Plugins
In reply to: [JSON API] Please don't let this AWESOME plugin die!My two cents about that, if you’d like to hear it is this:
It would be extra nice if all filters from a post’s body could be skipped if a certain GET parameter would be set. So basically it would be cool to be able to retrieve the raw post body without any alterations made by other plugins… Is that possible?
Forum: Plugins
In reply to: [JSON API] Method get_post redirects to post's pageHi! Sure, I can give you some URLs where you can see it in action. I do use the plugin on 3 different websites. For all of them it does the same thing. Here are the URLs:
https://es-factory.nl/blog/api/get_posts/?p=9540
https://bmwblog.ro/api/get_posts/?p=73792
https://www.nakko.com/api/get_posts/?p=2052I don’t actually have access to the plugins these websites use, but they are completely independent blogs, so it would have been so much of a coincidence that all 3 of them have a plugin that messes things up
Cheers,
MickeyForum: Plugins
In reply to: [JSON API] Method get_post redirects to post's pageSorry for bumping this but I really need to know if there’s a way to fix this… Anyone?
Forum: Plugins
In reply to: [Simple Parse Push Service] Disalbe push for editing a postI really need help with this… If you could tell me what line of code I can edit to make this thing trigger only on first publish and not later edits you would be my god! ??
Forum: Plugins
In reply to: [JSON API] Get menuI made a controller that does that. Just put this code from here into menu.php inside the controllers directory of the plugin and then enable the method in the plugin settings page. You can than access the method at https://yoursite.com/api/menu/get_menu
Enjoy ??