从json API获取内容以发布

时间:2015-09-08 作者:sunil

我正在尝试从非wordpress站点的json api获取帖子

我想把内容发布到我的wordpress网站上。

当前正在尝试https://wordpress.org/plugins/json-api/

以上插件,但到目前为止没有运气,有人可以建议我关于这一点。

我正在尝试的api是

以下是我的api文档:http://developers.hasoffers.com/#/affiliate

1 个回复
SO网友:dev

为什么要使用插件获取数据,只需使用jqeuryajax函数或jqueryget方法将数据保存到wordpress帖子中即可。例如:-

 $.get( "https://api.hasoffers.com/v3/Affiliate_Affiliate.json?Method=getAccountManager&api_key=MY_API_KEY&NetworkId=SAMPLE", function( data ) {

  do what ever you to with data, insert to post or whatever    
});

相关推荐