用于WordPress网络的Jetpack API

时间:2013-04-16 作者:alpha1

Wordpress通过Jetpack提供了一个可爱的Json API。

我似乎找不到从多站点wordpress安装获取数据的方法或文档?

在www.example这样的网站上似乎失败了。com/site1。有什么想法吗?

1 个回复
SO网友:alpha1

我回答了自己的问题。

URL中的斜杠将API调用搞砸了。然而,URL编码URL将绕过它。

IE:

$context = stream_context_create( $options ); $site = urlencode("subdomain.example.com/site1"); $response = file_get_contents( \'https://public-api.wordpress.com/rest/v1/sites/\' . $site .\'/\', false, $context );

结束

相关推荐

对自定义字段上的JSON-API结果进行排序

有没有现成的方法可以根据自定义字段中的值对JSON-API插件的结果进行排序?请求已分页,因此需要在服务器端对结果进行排序。我有一个http请求,内容如下:http://www.example.com/wordpress/?json=get_author_posts&author_slug=user&post_type=custom &include=title,custom_fields&custom_fields=date_value&count=10&