Pinterest API - pure json response?

独自空忆成欢 提交于 2019-12-04 12:48:30

The Pintrest API is currently in development and is not ready for public use; they removed their own documentation a while ago. There is however a cache on Bolt for v2 of the API.

For now I would just do a regex on the response such as

$return_data = preg_replace('/^receiveCount\((.*)\)$/', "\\1", $return_data);

And then json_decode that.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!