Lightweight JSON call to get all POSTS from WORDPRESS Blog - json

I want to fetch all blog posts from a Wordpress Blog simply by JSON.
I can't use PHP for that. Is there any Mechanism for that??
Like Twitter you get JS/ jQuery solution to fetch all posts.Is there any SAME type Mechanism for WORDPRESS Blog , to get all POSTS???
Please help guys....
Thanks in advance.

You might try using a plugin developed for such a purpose. This one is listed on the WordPress.org website, and it seems like it may help you.
JSON API
In the future it's always best to check the WordPress.org hosted plugins first.

Related

How can I save my data from wordpress form submissions to a json file

I have created a form on AWS Wordpress using NinjaForms and want to save this data to a JSON file. The form is working properly. Is there any plugin that could help me with this?
If you could redirect me to any tutorial about this stuff would be fine too. Honestly, I am very new to wordpress and I apologize if this is a very basic question.
Any inputs are appreciated. Thank you!
For anyone looking for an answer
You need to use a hook from ninja forms first
Then go to function.php of your theme and access $form_data at the hook function and extract and save the data yourself.
This is pretty much how anyone would go about to send a POST request to an API from your form

Wordpress JSON API returns normal site page in html. How do I get it to give me JSON like it's supposed to

For example, entering http://mywordpresswebsite.example.com/?json=1 into the browser loads the main site html, the same as omitting the json querystring variable: http://mywordpresswebsite.example.com/
The JSON API is activated. I have tried reactivating and deactivating, checking .htaccess file settings, and deactivating all other plugins. None of those have made much difference so far.
TIA
I had the same problem with my localhost test page and was wondering, why my route worked last week and was not accessible this week.
Short explanation
After some tests and a lot of frustration, I was able to use the REST API Route again by following the wordpress documentation about routes-vs-endpoints with “Pretty Permalinks” and “Ugly” Permalinks
Longer explanation
I guess in my case it was based on the reinstall of my MySQL Database. By installing the new database, my previous setup has been reset to the wordpress standard installation with permalinks as "plain", which is an "ugly" permalink. That's the reason, why the answer of Mattygabe work for me after the reinstall of the database.
But with this solution, I had a problem with my filter value and therefore I found the solution with "pretty premalinks" and changed my permalinks to "Month and name", as shown in the picture. After this change, I could access my REST API via the desired route.
There could be also some difficulties with REST APIs related to the following examples:
using "wp" within the REST route
if you work on plugins, which should be shared, keep on mind that some plugins may restrict REST Access, e.g. iThemes Security
I'm likely doing it wrong, but when I form my requests for a Wordpress installation at http://www.example.com/ like this:
http://www.example.com/index.php?rest_route=/my/rest/route/here
I end up getting proper responses back.
I had a heck of a time figuring this out and ended up grokking a URL formatted like that in the HTML returned to me. I was expecting to make requests as http://www.example.com/wp_json/wp/v2/my/rest/route/here , but I only got HTML responses.
(FWIW, I am reposting this on all similar questions on the StackExchange network. Admins/mods - if this is against the rules or seen as rep spamming, feel free to take it down. Was hoping to help anyone else hitting the same issue I am, and to also learn what it is I've done wrong and why.)
Ok, so the new endpoint for Wordpress 4.7 is mywordpresswebsite.example.com/index.php/wp-json. It's part of Wordpress Core as of 4.7 and not a plugin anymore, there's nothing to be activated. Thank you, Mark Kaplun.
I also experienced this issue. I did install the WP API plugin and then realized I didn't need it so I deactivated it and deleted it. Afterwards I tried a GET request to https://example.com/wp-json/wp/v2/posts and received the HTML of my wordpress site.
To fix this I ended up deactivating all plugins and then I started receiving the JSON response from https://example.com/wp-json/wp/v2/posts so I stepped through each plugin reactivating and in the end all my plugins are active and the endpoint is responding with JSON.
I changed Permalinks (Settings => Permalinks)
I had an issue returning html page instead of JSON response on Wordpress 5.3 and I got resolved when I changed the Permalink as Post name from plain

Instagram API on Umbraco CMS

I have a problem, can u help me to solve it?
I need to run an API to import all the latest pics from Instagram to a website built in Umbraco platform.
I wanna do something like this: phpInstagramAPI, but I can't use PHP with Umbraco..
You can use Skybrud.Social to help facilitate the calling the Instagram APIs from your backend code. It is well documented at: http://social.skybrud.dk/instagram/. There is a package for using it with Umbraco but as the package description mentions, "Even though Skybrud.Social for Umbraco 7 is a package made for Umbraco, there is a good chance that you only need Skybrud.Social."
If you just want to display recent Instagram photos on your site, it might be easier to go with a client-side solution like LightWidget.

Using Wikipedia API on custom wikis like Bulbapedia

Does anyone have experience in using the Wiki API Sandbox with making REST calls on custom wikis? By custom wiki I mean something like http://bulbapedia.bulbagarden.net/wiki/.
I particularly want to get access to some of the Pokemon content found on Bulbapedia, but not sure where to start or if it's even possible to use REST on custom wikis.
My current solution is to just use a standard wikipedia page with calls like:
To Get All Pokemon:
https://en.wikipedia.org/w/api.php?action=parse&format=json&page=List_of_Pok%C3%A9mon
To Get Bulbasaur:
https://en.wikipedia.org/w/api.php?action=parse&format=json&page=Bulbasaur
I get some JSON that I can work with, but would love to be able to explore the content of a Bulbapedia page AND have access to all of Ken Sugimori's artwork.
Yes, MediaWiki comes with API bundled. Furthermore, since 1.27 it includes a rewritten ApiSandbox that I originally wrote as an extension. So as Bulbapedia is running 1.27.1, it has the sandbox too.

Is it possible to build a blog with html only?

I want to build a blog with only HTML, meaning that no database, no PHP, just plain HTML.
Is it possible to do that?
It may be weird, but I just want to build a very simple blog that just require 2 functions:
create new post
comment
It will be hosted in Azure Blob, so no PHP, no database.
Thanks.
Of course. People did it in 1996 all the time.
Create new post:
Open blog.html in notepad.
Code new blog post above the latest
Save blog.html, upload.
Comment:
"Woah, this blog is epic."
Well I guess its not a good idea but if you have to do this you'll have to work a few things manually.
You will
Create blog posts manually using any HTML editor and upload updated HTML pages to server manually.
For comments you can create a "send to email" form (http://www.tizag.com/htmlT/forms.php) and receive comments in email. After user posts comments you can show a message saying the comment is sent for moderation.
After you receive a comment in email you'll have to update it in HTML manually.
Javascript or Jquery can be used for some enhancements in the process. Hope this works. :)
No.
How do you save the posts? Only serverside scripting will make this possible.